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()

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.10.0.tar.gz (106.7 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.10.0-cp312-cp312-win_amd64.whl (623.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ i686

nanots-0.10.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.10.0-cp312-cp312-macosx_11_0_arm64.whl (681.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nanots-0.10.0-cp311-cp311-win_amd64.whl (624.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ i686

nanots-0.10.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.10.0-cp311-cp311-macosx_11_0_arm64.whl (682.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nanots-0.10.0-cp310-cp310-win_amd64.whl (624.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

nanots-0.10.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.10.0-cp310-cp310-macosx_11_0_arm64.whl (681.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

nanots-0.10.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.10.0-cp39-cp39-macosx_11_0_arm64.whl (682.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nanots-0.10.0-cp38-cp38-win_amd64.whl (625.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

nanots-0.10.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.10.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.10.0.tar.gz.

File metadata

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

File hashes

Hashes for nanots-0.10.0.tar.gz
Algorithm Hash digest
SHA256 ee93607298b6a6e599854c066d2c5e99f731a49352b6ea2945bdf17e32700a83
MD5 11c008657b6007e5916a44c2db4d8434
BLAKE2b-256 77520c7b1ed064030f8179200b699e571ac441216d5bbfa046143f3f89aade16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nanots-0.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 623.3 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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f54e0cadcce67b319676b3ef0279a764bb6805ef06e3aa053ddb59311807a9a
MD5 646985eec3b766612259faaa9672508c
BLAKE2b-256 791fd6339a3a32e4f5f171876b46df463f5fa7cab69227697ebb13c0a12ff9b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 16a60b50bc6751c084391dc36fdd55a83249b16104ce62682ce040283ffcbeb0
MD5 3fdbc8840b5c7acf28bed23130eb7886
BLAKE2b-256 f34ba847337d2b5eea6b50f3b3a404751aecc6485f95f85c70266b55aeb43da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ebdd198eba83517feed172fb40b3975254da4c5a8052dfae405678013bd398d2
MD5 a65168a732a41e98805b3b0b4f57a70b
BLAKE2b-256 9b0d3baf493a50a2575ba6c793c8189d55e34382ba9893b522f367405f6e1c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a10d6da22fda8a23dbf00673cca0df4f3b7f0f1e6192e59bfd63ee5820446b5f
MD5 548bbc0e435acf6ffc324cb54a0abd5d
BLAKE2b-256 e18fe8e3c63342142ee71860d9ff1af6afd1c67454e832966f1b4052d9d283e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a9ce626c12d226450cafee1219f8c9cb32247bdd73a4e52c0542eaeffeffb19
MD5 29b569167b87755ee35fdeadda843e3f
BLAKE2b-256 ac86545eb09c4cb7e6aba8aa57c51907d4dc623ec5161781b21b51588117fa66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nanots-0.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 624.3 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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87dc8db9bc25a4424357566a3e82d7249778d4827847bd5b1853c49d347ff6ca
MD5 b811d994a7c5b23de2b6ac5e07a6a1cb
BLAKE2b-256 71d4e48b85f4a851e9bfedf64ae26c0b152c635d02dca3e1fa6128c9d6c95347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f155d75465f5d0f48d7a90c7953518003c418c69f3369059f9b9f52a41a40bb
MD5 aae4c144673ccb7a5bcdd8bbfa771db3
BLAKE2b-256 b0b4d2c77a42f4c638ae917cf0757b217e87d311425841f4ba8361308b2671ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d8a8dc8f113ee7616a31fef8344944fb4d6527f3228a7ca4b45cd7147b617f4
MD5 c42b07bb4845f6447c92ccab66757f09
BLAKE2b-256 3bdef8c72e46244761fff1feb4658509a3405bfbdf58243c7b4be4a88d8189c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b4b2c792f944cfb66a75eca1e4dc7c2738fd4e6afa992e37dc8958ffdeacbe8
MD5 10e42a21d3b12b4a5618bef917830d1f
BLAKE2b-256 f95d07aae3571396ae56e0422cc5c5bc13ec8cf2ee0d9cfe6379627ff10d06cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cbc9efb0c3add185f06773a3546e745683dc83e3e946109b21a3771f9a619f9
MD5 eb83bb150f9e4ea2726daa9bc2d267de
BLAKE2b-256 c72cf7d3e8d3b8201b35592c8799317577a5eee28bc2f1923e9c3af73c4373f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nanots-0.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 624.1 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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e754a3119c155bcdd438b24c59669fb1a2e54806accefbecc3b73f2b70251c4
MD5 2109e458e13e1ba060b5a95d0f9ea459
BLAKE2b-256 169a0764945ae8cab6bb169ecf633019e3649f3538610e1d88c8b74540dd6a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 403b508d19f1676e06c992b0da4481c81278f25dab074ed0eed40c16ef5aa3b5
MD5 59fad7fe031a717d111e48a235f8b13e
BLAKE2b-256 e52b9784c6f79610a8da8064f078ac28bb3a12c82ab7a0d3b0a0998eb75cf08d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 084f62e022b7e15486fca14822de337f07fafdcc1958a3c1bf1da0defa04fb9c
MD5 bea5cca98fe511c1aaed16eb99ac6daa
BLAKE2b-256 f418783c00c30e00d81a175c6f230273532f2cd8914140224be0127a8c688d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459f932b9f37bbdd7bff6d499a83e2b77a92ad2452140a4b5c90bdda0d626622
MD5 b32209401ca0d85cf9c29a1ebf633181
BLAKE2b-256 6e89ee6f3ed50728a4a50eea0b876959178c9228bffd6886496a8f258015be38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ad3f52008df81f3dda5f83a1a41cd89b52fbcf431afdf00d9c659cad39f3f84
MD5 6ec8bab48f315b0fb4dfe58db03c0d21
BLAKE2b-256 bf977eaac8749c3c6a84ad37316eea130f0f1b5d789eccd20fdeee05e48f0942

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nanots-0.10.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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6307d18c6427295566e85b2910e22e44960d34bc9d5e50ed09c7b7c7bdc8610
MD5 db7cfa76310e91bf7a822a152e82d834
BLAKE2b-256 fa0dd11515a920aae00323aa4fb7366580ee32ce3b228628a81a8bdf2b87f87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 631ff3a0543a08c1edd6bb37fa2ad5995f1702ebd162931140091d39717f43a3
MD5 63643dc2a27dfd0bbb8c04250d3ddd38
BLAKE2b-256 4970f03ad6c802c8f9c2140e25eb262281e1bc243c13f0d5e0ea1c3997b54f12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 04b1b4898f3f17d6364a782b3e38393429e1a2a161f668404776b297355f1186
MD5 467e3ad86aeee19d2568ceddc86a099e
BLAKE2b-256 a76fe8334ab3cf004f121acc6457f5f0ef32746bec16c73c43a1374cc5b2206c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ee72748063705ab07dcfb36a2c995cdc58cc1d5bbfe26a8a98b2564dca19004
MD5 1eaaac7350a2a9bc1bdd01378d6e2bec
BLAKE2b-256 5ac179b28e3e52344239095b61b5124878d3f3e6b7da34c825751af8c2f010e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4a6c554802b4a13725cf1dd114b3010da12fd5a1760678a47f88f7b0cc59326
MD5 63314aeeb2e183f024d69579db60ad8e
BLAKE2b-256 ac9d1b70d59a31a9d6348f89f74e007552a3c7eb0d8ff756c49ad0f4384dceb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: nanots-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 625.2 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.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0974fc451e4454bccd52289792f005fecaadb06d817a2cf38b0f6a411c85625c
MD5 be1d67951cd90b1843a6b17da02c38e2
BLAKE2b-256 c46e2f363cca5ce24e626b7a433832e1bfd113f3af6be0b4850201e498f5a49c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6e323c61140618197897071b1ce3d7c40022d9a39ec31fa2e22e1f90eba54eb
MD5 177a2d194350ee3de99013e72f2ec398
BLAKE2b-256 e4253a61963c2f08c95a588961fb1ad6288da81a2df351ee792d9450092663f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 05bfc42614d0748d7cd4fc6c00e90f5ec655c2dbcda211f90d6c7d9d0991cff6
MD5 44c74edd7bac319b43b4c344177f7628
BLAKE2b-256 cf7a72e75f1dd692eecb2e5d18efa81319cf08a508f6393eadecb0fc108641b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62084f573df670a17e9fa4bc37ec6313f7dfbfb0182e484e2064e55560c75334
MD5 b5c40827c8c3f908ff491c83b9e98a1b
BLAKE2b-256 dc5f2bfc629d72c4e6f4ab365e2ccb9705c2f8f470bdaff41c7bb17dd49a58b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for nanots-0.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b9fe5d956a8de5839638dec99e77beb384b9f8a9cffc7fd9231ffe023221456
MD5 750d2104ecaed1b0f987d3b0f6996dd8
BLAKE2b-256 3e0c18e03a78cf61ff914167bca57de52367f51deff06d99bbb330ee27f4c206

See more details on using hashes here.

Provenance

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