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')
            
            print("Writing data:", data.decode('utf-8'), "at", timestamp)
            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")

        iterator.find(base_time + 10000)

        print("Iterating through data:")
        for i, frame in enumerate(iterator):
            data = json.loads(frame['data'].decode('utf-8'))
            print(f"      {i+1}. {data['temp_c']}°C from {data['sensor']} at {frame['timestamp']}")
                
        # 5. DISCOVER STREAMS
        streams = reader.query_stream_tags(base_time, base_time + 50000)
        
    except Exception as e:
        print(f"❌ Error: {e}")

if __name__ == "__main__":
    nanots_basics_example()


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.11.0.tar.gz (107.0 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.11.0-cp312-cp312-win_amd64.whl (623.5 kB view details)

Uploaded CPython 3.12Windows x86-64

nanots-0.11.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.11.0-cp312-cp312-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

nanots-0.11.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.11.0-cp312-cp312-macosx_11_0_arm64.whl (681.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nanots-0.11.0-cp311-cp311-win_amd64.whl (624.7 kB view details)

Uploaded CPython 3.11Windows x86-64

nanots-0.11.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.11.0-cp311-cp311-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

nanots-0.11.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.11.0-cp311-cp311-macosx_11_0_arm64.whl (682.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nanots-0.11.0-cp310-cp310-win_amd64.whl (624.4 kB view details)

Uploaded CPython 3.10Windows x86-64

nanots-0.11.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.11.0-cp310-cp310-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

nanots-0.11.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.11.0-cp310-cp310-macosx_11_0_arm64.whl (681.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nanots-0.11.0-cp39-cp39-win_amd64.whl (625.0 kB view details)

Uploaded CPython 3.9Windows x86-64

nanots-0.11.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.11.0-cp39-cp39-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

nanots-0.11.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.11.0-cp39-cp39-macosx_11_0_arm64.whl (682.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nanots-0.11.0-cp38-cp38-win_amd64.whl (625.4 kB view details)

Uploaded CPython 3.8Windows x86-64

nanots-0.11.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.11.0-cp38-cp38-musllinux_1_1_i686.whl (4.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

nanots-0.11.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.11.0-cp38-cp38-macosx_11_0_arm64.whl (684.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for nanots-0.11.0.tar.gz
Algorithm Hash digest
SHA256 bef7a1636efe30258ec9b2dcb90c56b2754705a21b992087760c4b7a17b53c6b
MD5 2a741e044847544d4098d41e8b03fd8f
BLAKE2b-256 0e9ad902227ab813cdfbf6da8c1e64dddd4271f0748cec2e5e70610040460b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nanots-0.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 623.5 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.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f499d5b3f80e1ee02ae099b90cc2c611a1e7bd84945f9b6fdaad1837e723a6d
MD5 53067bf393212336575b097593e853cb
BLAKE2b-256 479b381e8b758690044acf865ba78db47781ab735c788577179355ae022c2b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bdf8bbc140bf25fcc401a33e194508671bd8a9783bee2ad2e3cb69574170cfb5
MD5 fbedeaf181eba32fb29bd620080b1164
BLAKE2b-256 8b4593ea3f42bb43971f4e0a7401575a00196f03dcf12d08697cbaa6010aa4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 152b92845324dc36c7fc2ece299ad1f80ae99ab67220a80f38a3ffe9009a6ee5
MD5 6c4e3bd3fe90d0bf7f9dae78989b1dba
BLAKE2b-256 f35212370a77836283f3078b3ca202557865bc74ffc341abc8e08b6980ccefb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75cb95c3c5e2632d57b6cfeeaf2866f867b9b0431683116e66315beeca1ab75c
MD5 b78dfc2c7d36fba4c3f7eb1124f59157
BLAKE2b-256 39bdb90a7378cebd7870d9a727de7778583041af5822a2983df9120b37122c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45a0f510d6959086f0122e76dc85a501697fa26f392ec558d0aa5147b8463123
MD5 283defcfe0ce89f9444002c5ef368a12
BLAKE2b-256 3e2b55fb68800985648c8b8ea72c02a9cd953d086c7d6454099abe7c30e08579

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nanots-0.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 624.7 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.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2e42a1916c12c72ee80c86fadfb336b722f56ee21480e93a4b7e20e2bcfd174
MD5 f8098ed32393d43689e5fe1bfaa11583
BLAKE2b-256 b924fa464340c3656480a743ef29d0f029a1d5f4753a967fbd8a8202fe9cae96

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1348880a8dc8c6fca6be12f0dfe141cfdb7590534930a8f10650cbde93cc8d4a
MD5 3a71a036e4dd13b2eb70bf2f37ffab6c
BLAKE2b-256 131def5e99e929cf762f896f1fed4b150cc833b844cbe5ffffd811ff08da28e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 da698557e3e4b35bd33792811dab2ddf8269174b6faeeb4856fac46847e86c43
MD5 5cf1a75a0e61c46d5b24fea11ff8600c
BLAKE2b-256 0ef2befe0d54b365b03f0cb637f1e3409cefcb7151ebdb195d4d0ffc8a308c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e75e13429cb1722d2dfd02fe97f0f38099486b6c093c9334065948beaebd8f1
MD5 88ab315036d8ab422ea3fe677f346fcb
BLAKE2b-256 2b2cc85fb6ae9a14eefd53a86715673ec5254348a5e7e2c1098b9f37a8083334

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dd4c6625fdd909a073a5731d41c0ad1d69ef46e1404c198bb59f0f09103b259
MD5 01bc0f10cb446067be635dafd55c3e92
BLAKE2b-256 036f948a0f11ec4c8c2929eae4a33b17aceeb6e3358818cce62ebe25d17bb1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: nanots-0.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 624.4 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.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 acd3c96e9e891a3c01279146257f13e47e6fcc1cc7a8e829a1728d8f0e766b42
MD5 180b09ddc5e4157777c1c55a71d7ea73
BLAKE2b-256 9e30aa075ccc4a4945423aa4ce6a0ef850e93dcd2be2f65aa54cf9d7d1c70f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a940edc116c3d26c7e1c27496abaa5a883c63fdb2ffc2f61a6e905d96e994e5
MD5 b3bf081b12e031b0d8785762ad684b09
BLAKE2b-256 7499dba4725289dc52594544ce671711a949e619820b41bce77393d6e8655959

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a1f04159127aaee290dea4d27b3492552d1912d935fb93fb28ceb992b8478553
MD5 4f501e1e98b36217a1cdfc3f492b3dd1
BLAKE2b-256 781a04bb9390c0bb46a2787a708f1588222f32e64224325741345a977ff4db2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0b1ef66561c913676e96b444735408a851fe0d3c0633d92f335e51f4d2effcf
MD5 83a4a5cba248b572a813744210a4e97e
BLAKE2b-256 998d8c2fc026509a38a0455e179f22f9f4f88ed21c021f89b766a9549d8933f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 674646d89cc37ef30d1b3a72e9e9f191e3c75bd8fe55f25db8deedf276032773
MD5 a57915e27d249ef3038eee3a48e3f59c
BLAKE2b-256 6546d4ab23d1f193ef857b30699272d7bd836b890556ad624a6e27e30eca1b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nanots-0.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 625.0 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.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 01538f0583fda7633efde1a37ab319d0207bbe98fe5cf3ab7574b8312a569f8d
MD5 701079f09759e9cdfb386bfcbaf4ffd3
BLAKE2b-256 e4078497f25fc5dc994407e0b6039ffff8eb245782245655d99bd6c2d938eefb

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79b0037bd1b5a0b2b90375e25eed9e8b056fa4176e40287527b89038021b0b32
MD5 f841704b4d062995958bbb4d6d4b7e56
BLAKE2b-256 9dbafd1949c53884c4f051e526ed3aa1e3a61ec702fe7dad37b5453e84b0e221

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d886b33bc3316875bbf2619216578e4061ddf95bc59be6b97363cac30e8418b
MD5 b2f298f1619666780e31de476fba68a2
BLAKE2b-256 d5407880c7b4abff80b6538357dd717852cc1ccabfed8cc7f4947cb385977167

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90ce0b85b85069b47f25d67a1582da93eed0adbafe4318e3272f895e2ad2e31a
MD5 701bc3adf769278234217c3e5d7a84b0
BLAKE2b-256 82536ca1d3bc9fa7287565d36a9021c7e7b45f47fce8cbed303655914ee11713

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c96ff04d5451ba416094a66dcf0605862fe7abfa5c4c60b1f80b2844e5db8754
MD5 616877e77c95dd7a6a790fd374d189a2
BLAKE2b-256 da998cdfb158f2b648b70e3ea78652b6c7dce63482e77bcf9287789947ce7d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nanots-0.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 625.4 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.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5274c9d8eb525f15b95bdd9bad9ec95f860b11edcc057a9b445cfc791c541b21
MD5 4657472fb6a084122cf22a15e22f11cb
BLAKE2b-256 09925dd6465608bf917b90a28e53460ffb023abd5a14ca05d95392e1824fdeb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0722e47d7de776f1d25a857794a8ea2fac95977f53638b171d7099d2e348ea7b
MD5 f0b66e740535d5698db2d83e9056636d
BLAKE2b-256 87ef5f69882caf224a2b3aa7025ec38d0c43601229af5bf3dc3acddf72acd503

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 affbcfb3deec7851844ff2e081abc452fa3366f291b8942649a6d7bad9402ae0
MD5 e23b35cf4b3dbf1de960eaf13fdfbe4f
BLAKE2b-256 923d92d618f24ada759f55496288ec4a94bfef19fbefd941abfe6c5c441b7b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c3cfbc32002408aeb16aad48bca6dec21e5e468a8d4045705d267fed58625fb
MD5 fa8871464c06b8f3807dce04d290b7c8
BLAKE2b-256 402b3606dd6b29195c363959102c5a0563fa2db51d72bc68afb98cdbc109d1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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.11.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nanots-0.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e49c664a1389b9e53e4d65ce6b1744523899b28b081d3eba99ebd465805869f
MD5 737ebcced8b0a2b242f39e351b8958d7
BLAKE2b-256 6bc761c11bc328cb988bc08a3136bedf265caece70f44d768ea74392b0dbcba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nanots-0.11.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