Skip to main content

Python bindings for nanots embedded time series database

Project description

"""

import os import tempfile import time import json import nanots

def nanots_basics_example(): # 1. CREATE DATABASE with tempfile.NamedTemporaryFile(delete=False, suffix='.nanots') as tmp: db_file = tmp.name

try:
    # Allocate database: 64KB blocks, 100 blocks = ~6MB
    nanots.allocate_file(db_file, 64*1024, 100)
    
    # 2. WRITE DATA
    writer = nanots.Writer(db_file)
    context = writer.create_context("sensors", "Temperature readings")
    
    # Write 10 temperature readings
    base_time = int(time.time() * 1000)
    for i in range(10):
        timestamp = base_time + (i * 5000)  # Every 5 seconds
        temperature = 20.0 + i + (i * 0.5)  # Increasing temp
        
        data = json.dumps({
            "temp_c": temperature,
            "sensor": "temp_01"
        }).encode('utf-8')
        
        writer.write(context, data, timestamp, 0)
    
    # 3. READ DATA
    reader = nanots.Reader(db_file)
    
    # Read all data
    frames = reader.read("sensors", base_time, base_time + 50000)
    
    # Show first 3 records
    for i, frame in enumerate(frames[:3]):
        data = json.loads(frame['data'].decode('utf-8'))
        print(f"      {i+1}. {data['temp_c']}°C from {data['sensor']}")
    
    # 4. ITERATE THROUGH DATA
    iterator = nanots.Iterator(db_file, "sensors")
    
    count = 0
    total_temp = 0
    
    for frame in iterator:
        data = json.loads(frame['data'].decode('utf-8'))
        total_temp += data['temp_c']
        count += 1
    
    avg_temp = total_temp / count if count > 0 else 0
    
    # 5. DISCOVER STREAMS
    streams = reader.query_stream_tags(base_time, base_time + 50000)
    
except Exception as e:
    print(f"❌ Error: {e}")
    
finally:
    # Cleanup
    if os.path.exists(db_file):
        os.unlink(db_file)

if name == "main": nanots_basics_example()

"""

nanots Python bindings

Open x64 Native Console

You gotta have cython and build installed

pip install cython pip install build

on linux, build with make, on windows, "python -m build"

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

nanots-0.9.0.tar.gz (106.9 kB view details)

Uploaded Source

Built Distributions

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

nanots-0.9.0-cp312-cp312-win_amd64.whl (623.4 kB view details)

Uploaded CPython 3.12Windows x86-64

nanots-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

nanots-0.9.0-cp312-cp312-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

nanots-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nanots-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (681.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nanots-0.9.0-cp311-cp311-win_amd64.whl (624.4 kB view details)

Uploaded CPython 3.11Windows x86-64

nanots-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

nanots-0.9.0-cp311-cp311-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

nanots-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nanots-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (682.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nanots-0.9.0-cp310-cp310-win_amd64.whl (624.2 kB view details)

Uploaded CPython 3.10Windows x86-64

nanots-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

nanots-0.9.0-cp310-cp310-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

nanots-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nanots-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (681.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nanots-0.9.0-cp39-cp39-win_amd64.whl (624.7 kB view details)

Uploaded CPython 3.9Windows x86-64

nanots-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

nanots-0.9.0-cp39-cp39-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

nanots-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nanots-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (682.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nanots-0.9.0-cp38-cp38-win_amd64.whl (625.3 kB view details)

Uploaded CPython 3.8Windows x86-64

nanots-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

nanots-0.9.0-cp38-cp38-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

nanots-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

nanots-0.9.0-cp38-cp38-macosx_11_0_arm64.whl (684.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file nanots-0.9.0.tar.gz.

File metadata

  • Download URL: nanots-0.9.0.tar.gz
  • Upload date:
  • Size: 106.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0.tar.gz
Algorithm Hash digest
SHA256 7972d0719a67be8cc774071e2fa794d781b49845cab0d4993531ec236e62d3fb
MD5 4cde6da837940085072fa8b808e6d0c5
BLAKE2b-256 82cb45923216a0234a8a94089d4e39a891a560f3fe0f447844347537dfae0e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0.tar.gz:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nanots-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 623.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f2fb61d058162347eb20b6f67b8945d0dd67827d0547650d493b388342ba492
MD5 0f80acd50482e5318d3ac79f1ae2e8d4
BLAKE2b-256 18b2765f5c4a66cd6dd203daa3fafd784eb0f1336610497648faf442513a0639

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp312-cp312-win_amd64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6246b8e587ceb15b25236d145663adc40c132f8038f3eec3fafeddf7142433c9
MD5 c709bdda026a7a00f978cc71a01fefd2
BLAKE2b-256 e228b13966772d5dea253b09c093012644d3859f877bbef6d3388c0c1d8c6ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f333073050a6fa483753303dfaa767ed2e4f169ea9e5abd1323b316efed8a4cf
MD5 7955b2d4998c429e4b03487e3f757add
BLAKE2b-256 cfaeb1a0f54d140788d2e9c408cd316f75768d7d0a845ec3f5af32bc5230441d

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89cdc838fc076651c5aacfc841cb99f7cf950a1606b43e277a46a96ec4fedc31
MD5 8812ade82e1336bcee8c4f9556e1d776
BLAKE2b-256 2439a9f1a81081ffe7b96b152eaf4ac9cfee03af6ed4b2ea8398920b680142f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11da1b9316424f3ea7f1ada10b67e83bfce9b9709984a31c948ee204c3b0fea1
MD5 457aa2363cdd715dbc45e978e86083fe
BLAKE2b-256 a030da07d4c6bda7a587345ecd53e046a54f08a862aaaf52cf5252060ba9a969

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nanots-0.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 624.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dec2ca00ae10ed008cfcf9febec8418cf9bd4614e58313664e24e9e1c580dd0
MD5 e75f98c993cae9005724484e40e6a32f
BLAKE2b-256 179cef1ae0ed08e513dc9e0ffdc1c8690e478b371326b31aefadf4d6bffc4c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp311-cp311-win_amd64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b89e80b262c343608ba522c7856dd44fa32cc2ba98f40479c52ab3dc317ee691
MD5 83c334ef47c27b9cb6eb538f8231250e
BLAKE2b-256 145d20931f6381d753f0f5fcb2a4171abbb25b1550131654a48fa212e3dad575

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69e1a1c8408684509e726d8a52989cdbf1abc5a6c288182413d5f76d3f0bd0e2
MD5 59c58ada90213009ad9d155c320659a4
BLAKE2b-256 c45cb8e26f1f6124369c1f8f95613b993b4a59548f6b9ccf76cf81c7a72fd447

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4ea7d4801317f8270b56a008dd4d8b41b12351b95e6686b47592994437bf69a
MD5 8f0caf53faafeed818547f5c69d470f2
BLAKE2b-256 3094b6eceb9390e7e48e52356b7fc67c4edeaedc9e0233940c251db858e3d1fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23957b845d2cee1e3c1ee2eb5d10b03d6c399fa0dc3243fa846d6f74f10c539b
MD5 bbe95458a8083618a2275fbe2b21c096
BLAKE2b-256 8a02bec523a63cc00a7a8bf84eb3d132fcf1ab09a395013d9589e4a13cecdbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nanots-0.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 624.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cb5cf945ed5d0bf80ba6ebd60bac7f85d839b5286bc0a22f6e3087763d2f9b0
MD5 6f75ec041b53e4322fcfc94ad625b5ad
BLAKE2b-256 6c0ba399733426e090338aa71f3ea4fbcb108ace7badac25124081ee68dce028

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp310-cp310-win_amd64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d36ad4e3cdc00e671fcde8d6b4eea30866921c8199b056284ab13a7575461c62
MD5 4f47cb07939d231e28eb08cbbec1c547
BLAKE2b-256 145492adf94704767d07828d48d5d51ebd66817c342cfccef90e82e68c99099a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b351117905fab9057897a8779c03f2b9caf9e5233f45d836f04861e3a69a56fc
MD5 b3f897ff92ed5dd3409485fffcb5b843
BLAKE2b-256 0aae52f0a54d99627f006f1c155961778985a7bbdcc7368007cbcfa89c83b0a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 154fb959dc7496c8a6e4dd1cbfddbc1ca35b426f80676949a38440dd34009499
MD5 224369a1a1443e15b2645122a0eb729d
BLAKE2b-256 b0023f0d78585c9895cb02b8f859b38d90a54ffd1d15cf869b02c2f6dee9857c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 665eee3e555cafcf3bf2fe030ebe6c03be82934128766a6716af7caf973d9766
MD5 2359b03455da0809f1359783dbf17672
BLAKE2b-256 b96defd3d3ef0f2e3f4446c3d6ccfbbf83ec707ee897fbef124ea9a77010a0be

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nanots-0.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 624.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 029e6b87af62e78eacc5bc945994fdabef9faf06cc9c902f0618217b384df3dd
MD5 a7ade33b950aa8009d12969a309139aa
BLAKE2b-256 a0f9fbf21838bd6504d441841447989f3c5d11a72fc1499c23322fdf1ae2af7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp39-cp39-win_amd64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8e0dcd25704286351234e3d25282819f23731f35c0975a564bb3409eaef3235
MD5 1020add8649b499f49c71804da554021
BLAKE2b-256 1b71272f12cfdb9c0e9201a34fbc5231c6aeed1eacf9ab7cfd9ba0fadcf479bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: nanots-0.9.0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 90975dabd56e652b70cfad0ea3c6af6d2be160b9e9d85fc06c04a2874462b1fe
MD5 5fcf4ae4b5da90dca8675c56c92fcb32
BLAKE2b-256 388abd5333487e7a72197356e40e32ca9f2dd2c9a5014a8f3f0bd4b93a52ce76

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp39-cp39-musllinux_1_1_i686.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24af390a9ea87692d504818d72010e3788797e41eefa2fd24a8b81bc2f5eea31
MD5 245b305093c6238b76df372c6fe4d4f6
BLAKE2b-256 53732e81d74c186aad06df381174071297fdfb97a727b8f3b1bb9cf0072b34e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1f340505f1f7afea47624aa92c81e5c38ed617f7129f1669d4206cd35c853ff
MD5 3ce881f8e1660f05f666f3194b3081ec
BLAKE2b-256 45d9c04098d0dbe76bacd11d8b6890cfebaa3144fb54c89f9a1ce9308ee42f2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nanots-0.9.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 625.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5469f74aca19942868f1f9453e17621a3c7de500f11a0f5d104d09f7030d3b71
MD5 c15270b375ac7cdc6682c4843936ca2c
BLAKE2b-256 4aa416e40de806413cef91ebc3e6fb3185d41ee269f0c8766710b699bab3ed09

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp38-cp38-win_amd64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10a096f839897717d1a4aff48b9406df4fbb7c961776659b2fb6d70a0f071a63
MD5 c1e4db536498a0d0127bd7ac0b13c836
BLAKE2b-256 8e739a4d887a704d8c4cb072b986229f9c90858a80099574cc65fcb5f6f35ceb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: nanots-0.9.0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for nanots-0.9.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c1f06d3727a34166f762622569a994de4f8d53567df7b3546198c43153a9dbb
MD5 658c88ae5f03790b3693e839b0a60cf0
BLAKE2b-256 5017cd0ec6d1f93e0cf8cb7ec48f4c9b009115ba0e04cb58e2564342eb19d45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp38-cp38-musllinux_1_1_i686.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6876dd0f93fcfcfda8703148db5ce56d6ff0a3b25bc102a039723981e5e893d
MD5 516d8abd380480316ad2e0d91d064414
BLAKE2b-256 35b415282c785bae3c245a0bf4874fb6b7f43dc3e045c2f3c1256bebc081f50f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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

File details

Details for the file nanots-0.9.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38c30f585d07fb47692073d26800c0782dab5f57bd649978a61780742d90492f
MD5 a6bce156edf550fa0d7528e24f2ffd40
BLAKE2b-256 cfbc2d5117ad8857234052e558f408251f88519352a8235f92fba25a87a41056

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.9.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: cmake-multi-platform.yml on dicroce/nanots

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