Skip to main content

High-performance BSON library for Python without MongoDB dependencies

Project description

lbson - Fast BSON Library for Python

PyPI version Python versions License: MIT CI

A high-performance BSON (Binary JSON) encoding and decoding library for Python, built with C++ for maximum speed. This library enables you to work with BSON data without requiring MongoDB drivers, making it perfect for standalone applications, data processing pipelines, and microservices.

✨ Key Features

  • 🚀 High Performance: C++ implementation with Python bindings using pybind11
  • 🔧 Zero Dependencies: No MongoDB driver required - works standalone
  • 🎯 Multiple Modes: Support for Python native, JSON, and Extended JSON decoding modes
  • 🛡️ Safe by Default: Built-in circular reference detection and configurable limits
  • 📦 Complete BSON Support: All standard BSON types including ObjectId, DateTime, Binary, UUID, Regex
  • ⚡ Memory Efficient: Streaming operations with minimal memory footprint

🚀 Quick Start

Installation

pip install lbson

Basic Usage

import lbson
from datetime import datetime
import uuid

# Encode Python objects to BSON
data = {
    "name": "John Doe",
    "age": 30,
    "email": "john@example.com",
    "active": True,
    "created_at": datetime.now(),
    "user_id": uuid.uuid4(),
    "scores": [85, 92, 78, 96],
    "metadata": {
        "source": "api",
        "version": "1.2.3"
    }
}

# Encode to BSON bytes
bson_data = lbson.encode(data)
print(f"Encoded size: {len(bson_data)} bytes")

# Decode back to Python objects
decoded_data = lbson.decode(bson_data)
print(decoded_data)

📚 Comprehensive Guide

Encoding Options

The encode() function supports various options for controlling the encoding behavior:

import lbson

data = {"name": "Alice", "values": [1, 2, 3]}

# Basic encoding
bson_data = lbson.encode(data)

# With options
bson_data = lbson.encode(
    data,
    sort_keys=True,           # Sort dictionary keys
    check_circular=True,      # Detect circular references (default)
    allow_nan=True,          # Allow NaN values (default)
    skipkeys=False,          # Skip unsupported key types
    max_depth=100,           # Maximum nesting depth
    max_size=1024*1024       # Maximum document size (1MB)
)

Decoding Modes

Choose the decoding mode that best fits your use case:

Python Mode (Default)

Preserves Python types and provides the most accurate representation:

from datetime import datetime
import uuid

data = {
    "timestamp": datetime.now(),
    "user_id": uuid.uuid4(),
    "count": 42
}

bson_data = lbson.encode(data)
result = lbson.decode(bson_data, mode="python")

print(type(result["timestamp"]))  # <class 'datetime.datetime'>
print(type(result["user_id"]))    # <class 'uuid.UUID'>

JSON Mode

Converts all types to JSON-compatible format:

result = lbson.decode(bson_data, mode="json")

print(type(result["timestamp"]))  # <class 'str'>
print(type(result["user_id"]))    # <class 'str'>

Extended JSON Mode

Uses MongoDB's Extended JSON format for type preservation:

result = lbson.decode(bson_data, mode="extended_json")

print(result["timestamp"])  # {"$date": "2023-12-07T15:30:45.123Z"}
print(result["user_id"])    # {"$uuid": "550e8400-e29b-41d4-a716-446655440000"}

Supported Data Types

lbson supports all standard BSON types:

Python Type BSON Type Notes
dict Document Nested objects supported
list, tuple Array Converts tuples to arrays
str String UTF-8 encoded
bytes Binary Raw binary data
int Int32/Int64 Automatic size detection
float Double IEEE 754 double precision
bool Boolean True/False values
None Null Python None
str ObjectId MongoDB ObjectId
datetime.datetime DateTime UTC timestamps
uuid.UUID Binary UUID subtype
re.Pattern Regex Compiled regex patterns

Advanced Examples

Working with Binary Data

import lbson

# Binary data
binary_data = {
    "file_content": b"Hello, World!",
    "checksum": bytes.fromhex("deadbeef"),
    "metadata": {
        "size": 13,
        "type": "text/plain"
    }
}

bson_data = lbson.encode(binary_data)
decoded = lbson.decode(bson_data)

Handling Large Documents

import lbson

# Large document with size and depth limits
large_data = {
    "users": [{"id": i, "name": f"User {i}"} for i in range(1000)]
}

try:
    bson_data = lbson.encode(
        large_data,
        max_size=512*1024,      # 512KB limit
        max_depth=10            # Maximum nesting depth
    )
except ValueError as e:
    print(f"Document too large: {e}")

Performance Tips

  1. Disable circular checking for trusted data:

    bson_data = lbson.encode(data, check_circular=False)
    
  2. Use appropriate decoding modes:

    • Use "python" mode for Python-to-Python serialization
    • Use "json" mode when you need JSON compatibility
    • Use "extended_json" for MongoDB compatibility

🔧 API Reference

lbson.encode(obj, **options) -> bytes

Encode a Python object to BSON bytes.

Parameters:

  • obj (Any): The Python object to encode
  • skipkeys (bool): Skip unsupported key types (default: False)
  • check_circular (bool): Enable circular reference detection (default: True)
  • allow_nan (bool): Allow NaN/Infinity values (default: True)
  • sort_keys (bool): Sort dictionary keys (default: False)
  • max_depth (int|None): Maximum recursion depth (default: None)
  • max_size (int|None): Maximum document size in bytes (default: None)

Returns: BSON-encoded bytes

Raises:

  • TypeError: Unsupported object type
  • ValueError: Circular reference or invalid value
  • MemoryError: Document exceeds size limits

lbson.decode(data, **options) -> dict

Decode BSON bytes to a Python object.

Parameters:

  • data (bytes): BSON data to decode
  • mode (str): Decoding mode - "python", "json", or "extended_json" (default: "python")
  • max_depth (int|None): Maximum recursion depth (default: None)

Returns: Decoded Python dictionary

Raises:

  • ValueError: Malformed BSON data or depth exceeded
  • TypeError: Invalid input type

🏗️ Building from Source

Prerequisites

  • Python 3.9+
  • CMake 3.15+
  • C++20 compatible compiler
  • pybind11

Build Instructions

# Clone the repository
git clone https://github.com/Soju06/lbson.git
cd python-bson

# Install lbson
make install

Development Setup

# Install development build dependencies
make build

# Run tests
make test

# Run benchmarks
make benchmark

📊 Performance

Coming soon...

📚 Related Projects

  • pymongo - Official MongoDB Python driver
  • bson - Pure Python BSON implementation

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

lbson_py-0.0.7.tar.gz (54.1 kB view details)

Uploaded Source

Built Distributions

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

lbson_py-0.0.7-cp313-cp313-win_arm64.whl (106.5 kB view details)

Uploaded CPython 3.13Windows ARM64

lbson_py-0.0.7-cp313-cp313-win_amd64.whl (109.8 kB view details)

Uploaded CPython 3.13Windows x86-64

lbson_py-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

lbson_py-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lbson_py-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lbson_py-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lbson_py-0.0.7-cp313-cp313-macosx_11_0_arm64.whl (107.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lbson_py-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

lbson_py-0.0.7-cp312-cp312-win_arm64.whl (106.4 kB view details)

Uploaded CPython 3.12Windows ARM64

lbson_py-0.0.7-cp312-cp312-win_amd64.whl (109.8 kB view details)

Uploaded CPython 3.12Windows x86-64

lbson_py-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

lbson_py-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lbson_py-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lbson_py-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (158.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lbson_py-0.0.7-cp312-cp312-macosx_11_0_arm64.whl (107.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lbson_py-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

lbson_py-0.0.7-cp311-cp311-win_arm64.whl (107.1 kB view details)

Uploaded CPython 3.11Windows ARM64

lbson_py-0.0.7-cp311-cp311-win_amd64.whl (109.4 kB view details)

Uploaded CPython 3.11Windows x86-64

lbson_py-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

lbson_py-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lbson_py-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lbson_py-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lbson_py-0.0.7-cp311-cp311-macosx_11_0_arm64.whl (108.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lbson_py-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl (114.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lbson_py-0.0.7-cp310-cp310-win_arm64.whl (106.8 kB view details)

Uploaded CPython 3.10Windows ARM64

lbson_py-0.0.7-cp310-cp310-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.10Windows x86-64

lbson_py-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

lbson_py-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lbson_py-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lbson_py-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (159.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lbson_py-0.0.7-cp310-cp310-macosx_11_0_arm64.whl (107.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lbson_py-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl (113.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

lbson_py-0.0.7-cp39-cp39-win_arm64.whl (105.9 kB view details)

Uploaded CPython 3.9Windows ARM64

lbson_py-0.0.7-cp39-cp39-win_amd64.whl (107.7 kB view details)

Uploaded CPython 3.9Windows x86-64

lbson_py-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

lbson_py-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

lbson_py-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lbson_py-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (159.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lbson_py-0.0.7-cp39-cp39-macosx_11_0_arm64.whl (107.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lbson_py-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl (113.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file lbson_py-0.0.7.tar.gz.

File metadata

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

File hashes

Hashes for lbson_py-0.0.7.tar.gz
Algorithm Hash digest
SHA256 00a778ea7a5115104e45e317577b21ae9991acac65ad96b8db78d7c9903af262
MD5 211ad823925e5e0aecdaae772598834e
BLAKE2b-256 36e452576711b1a14c16b33089540a1084942658404987d2db8c1ab4e5961848

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7.tar.gz:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8711200eb5de16902c16f4f60cb3e1c98a613b93a9754faebfcf20025e099ca3
MD5 9916207215dd9df8fa4591d6c57610b7
BLAKE2b-256 380fe048bc23862c1c556b277b8e5ba6d1657c0ea0d9b446943bc07150ecfe33

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-win_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 314f3405a4566168d8a103f1baf190f0a93722a8fe7252403dfb5f3b35000d6f
MD5 bd9a3e07d4eaba04717e156741f90832
BLAKE2b-256 52a676eccf260450a94ab31e51de5ff1aa0e502ca391f67f689307adbe7bf0c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af6706322de21d29871f9ef8f9fd9e3d0d7a269ebff5971756ede66dbfd9276
MD5 395b405573a734984971e45eef025837
BLAKE2b-256 81ca6a8ed373c8e3658ac75215ffeb4789db9b979e923a2ef2f75901076b5306

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b1fe31387a47377e6a914a72f668639ef70090ee7f633a5b7ac40d0069ccb96
MD5 564175d990321febc4ad6b996bc860ac
BLAKE2b-256 3ee4c63240483a8860e64812ca20c94a63a73e2209647cd39481d24d167e9c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 900d98762be423b937f53890c6e7d0442b1820e9e8ffa8bf278720283115f7d0
MD5 53efab94b286d65f35d8fcc8057c028f
BLAKE2b-256 38d896b2a4d0f2ceaf08dbb5647a3fee64b42492886c2d543ac01f0c2c3e47aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b2f6eaf294accb5f6619e919f9b98df17f2cd2d6c645362a74c759d8ddb515
MD5 83f81d6d8ffb3fd24d6c52995cd220aa
BLAKE2b-256 2681f41ca631b5e57026441c3ce4409739c65093bbd4c7157327a77cb3ca3150

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8751176d8bb8029c1109ebd8caad2362bc7dc051b2f2ac4c3060b1296cd6f546
MD5 2a65ceec4786172e2b2c5630a2afa50b
BLAKE2b-256 03d6880922531f71266afb054f1f141c7d257e1a2d08ce385d28e2d58cf3abbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09670618a3bb7f2314be52e9bcb057762bd35ab5393123132e53a07fa80c2d4f
MD5 e135ce8408b52659fbfcf1b8a3941f69
BLAKE2b-256 d38ad494295cd1dd51d6cac302a43e3855aa49d6e99a444ed90c06c4cef0f805

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 106.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 48b787ae0967ebf45ba6c764a157029354a9d727b444c4c3f124fb173eabf664
MD5 2b3946e1d14f7221da75c7c5587d0fd9
BLAKE2b-256 bf175b03fe65a3fe0ae607daaa3126d3ec271bf7a4f1af23fe13a76cb781af91

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-win_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 109.8 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 lbson_py-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83249df4ada8ba0bb86e12292e711b044be3163abd026358ff7ed55b02f4ea69
MD5 eb5d5b5c5c2202330cca6c79d56b47cd
BLAKE2b-256 7b105b83240166ce258ffd08c2adb8ca8a484aa6f6155f65e3c4fe67e55fe617

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b20a463856b4668402975c2ad9b7f26d2d7a169219e1f7ce46f24d0991e8c291
MD5 715006443d897a6c9b13dac5482a2011
BLAKE2b-256 3c16a5044e509d0ae9f2faf80eed4efba91ce765d29c759537aa44de302916c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e1bd791e0f4f92d99bd4915d0cfe42fa59fbaa0b0fbf2dc5c9b0ebcf829701b
MD5 2ca4533b72289dc83593670be2816d62
BLAKE2b-256 8bbeafb2208b845ebb18587e3b979add91be24cd62223d54647f34770bf13edf

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51370f22ec0ed2a7e4b837d78ea257e77b20574429989888b66beb18fef5d8ef
MD5 cbd92afc504efffa52c315a065c985f1
BLAKE2b-256 eb79aa69e4cbce29415a405b3e883c576991bf4ab50f446cda3ef27d230cefae

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eb84815ce197e2d77a3c477a7ea5feb581b5e99ae5db6b6f9598d4660c5e595
MD5 86286b842832be43bf2b021e2be7c210
BLAKE2b-256 65c189c74a21712339cf671d358ecbfad1b7c7f0663f0c28f7344d9bdcd7bf29

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a681ecd89da8dc96cab1e44495b50d0b720b4e5912f16430edb37f87a26fca0
MD5 4febc856e90410568650045c1384f419
BLAKE2b-256 0fab3d46077a74175e20b76206f05105191a24866aedb19ad26357249d549b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 898dc87dde4c6f381b94924ec9c6df2e0184e81734c7e92d63690955026191d5
MD5 b4eff370f862d9faf03e98bee8e88be4
BLAKE2b-256 082e3985c8f3b53bf095208d43f2f1184d8cdc5455a623bf1ee687128055ec02

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 107.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8c55dd82c98cca9229af21845d1067474178e90b7958e5d0be9861ef0b7ac429
MD5 d1e636132b321906f51216199658a253
BLAKE2b-256 1b83c260962aac0ab720b54ffdfab5356100c90f0d12764337c7c5012a639352

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-win_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 109.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 lbson_py-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 94557f405bc2970c0c92baba3880bf08f52fd6fc0b6d1e7e321b5bada6a3c20b
MD5 e60c65d57dbf99020cd5cc8a652499e7
BLAKE2b-256 961266645970a388b43cf367012b49d1a8c6cbc9bde5f6c47db1a2f0917d9bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24dc31b67aaeefc77b1b4cb82bdc4c8faebdf45280e306221540802a0240ce5f
MD5 74a0f83a16d5e995ef49386aacc757de
BLAKE2b-256 76ecc8de2d723627599e3044a30ef0eb047a6c0ddd1d259d32d01f3db39fccac

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bac11d9b0ebf6eb7cc6937f33a17b2cf246436e160bf79c435d3b3232d10ca63
MD5 1434a197c5f48153d1e1688ad92b0ee2
BLAKE2b-256 7dfa1e1666b3d772415c44862106072bdfc1d36d52cb2980db69ad58d10d787f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 125cf2508ff6e6b82ca8af46a3aa211b3f5234a21a8eb6012ac0e0aee4dc6b1c
MD5 472ba5305d3d7f2e9fe9fa57826bde25
BLAKE2b-256 4d91443b2b36310c8645fd20c8c67f0a1efce9f2d6adb36f9ec1237aa48cff0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17e24a819ece3ea1481f18f6236120299d94f91d03280cf8ce9f2a4ce7b6e26c
MD5 904f7bb486c522abb88cc8f83f5be832
BLAKE2b-256 e07f2573514c140abbfc50d5696f72cb2dd4f8df062636913db67606dfd3b4cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee0e37f08fd52ac8286c7b61aeed4564dd5139b22267bce71ceed94dad496b1f
MD5 9041f212c2ed5d9a6cd3f97e32bb65c3
BLAKE2b-256 05dd7afa959e7b0d82563ae5d4f9c8c048f55e7fb18746a97bbc08350f31e537

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 780f152353951895c7b19cd3648434978997544ea4edeeb8423edf9753b078e6
MD5 c6637d45bdb63fa0456f3dec1ba02990
BLAKE2b-256 a35138e5ca1d45d147e811b8b24e2e2a5fb479fcb2f5c73b13b2fc319aeb4e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 106.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7b767d8d7443b74bd17728634e4db5dd17fe3c82d9b4befd48dfcfa320190089
MD5 718b3db59dd66ca7503ce3a5247fad4a
BLAKE2b-256 49b84812c5f4a557cef0b35f9988b7021221b68661d87eab804d65248dcbbc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-win_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 107.6 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 lbson_py-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40339e4c2b8d12da71c4447de52fb9c43a73de0b865d75ffd6bfea3f0ae66ef2
MD5 401b2454da4f635f3300dcc895602ef3
BLAKE2b-256 2af7416e9267d5f22e4a70f2dab9dbffc8055712cea8c46d5ac30b9b71ac9826

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dd9110c69c402cfd4c06a647713ccdc44168185fa3e05919a8ea145cc7769a7
MD5 4c39b5e0f0d4f2370cbdd3d0906a4a4d
BLAKE2b-256 2202c2d3ac7e19627088c0560493f317c03e52d826f21fced43c374c8486c92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529cf5fcfc3a12036692b6d58504821db258b5f3e0a1b4625a34174651827c88
MD5 af9cc7b3a946eb270b62953d09a1a575
BLAKE2b-256 62015f96c175caf537f4ab7fec19cd6ed3e8b6d9afa9762b7e5fb796373c2c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b67a1da90546f6762ceeea9663fad8bb3df7df9ad59c49b5d01f6b29c1781d5b
MD5 81c65bfd8c9b2a5e46ec702150b997bf
BLAKE2b-256 7cc314a1be9c175f835a15b0b8d544052a8af55260e5a09680c791a8e4d16eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec6eff689ab95fd5471ba0ec40a4182581ff028930ce3bceb1b4796fdf0d89a8
MD5 9bb85e7de83eb8cbd2249c287ed904e7
BLAKE2b-256 4ca0739f8a6302bd1b148445937610b54ad7602ff80dcc6af62c2ef8bfb159d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f50181b31e628bc140a0130742a4a2867365d0b65f37cdb9bec4a3c8193cd30
MD5 3d75113fc8d91551e959e3f8ec505fca
BLAKE2b-256 816b514b634390ee6bced971f4fac348c75b88f6255b86c17fbd9b0f57746686

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4085b5e0733b7f6aadb8cb2741c42ed37ebee71872c267f16268598d497b238
MD5 cf78cd26a4c9175105e76e8d6ac9639d
BLAKE2b-256 cdd6166a66f029f484c8b1ab60ceccbba68fd92250ea8bc1b741f704ffbe009c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 105.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 334f34157ca0165b6df7898beba91b83994b52aa7eaab8ad74d3ea0c6eb5503c
MD5 6e406ded2a1703d18ccfb36b484a67eb
BLAKE2b-256 551b219ecb94aa614337068574587ce69ac6af74ef567a5c1a9fa173da7ac1b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-win_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 107.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 lbson_py-0.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d49638deb59e6a779030f044021ca4abbb18847b82b083edc02cbfcce8016de4
MD5 fda9d92bb682a0f139c9f1c48554eb23
BLAKE2b-256 26a30c57a6dd7c74a25b571ba6f05a1070262f2918f11b330a68f0c823cb4025

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-win_amd64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e9fef6082063b838c7f02a1e8bb8676489baab08d1df40b13c4c342e022ad32
MD5 11c80c8fbc878c193e71a0c3c2252d76
BLAKE2b-256 21accef9698c3de2511ead3594220f31ac478811d32851f12100296a8513a077

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28b7b65ae480c6ba0c6fb8025d9707b0c2194918be66735e2b5dedbeed8e99ea
MD5 421caf228daa4a0590f8844ec8c2049d
BLAKE2b-256 26a941f3caa0218dafce432b8694a79ceb188848ea31a9a3530d0a6c50564158

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 801f134fb911f1fd0f21bea7a098b45f6f9c37334ceeaa3e4ffb7b0c98f93077
MD5 5078d896ba097d1d9638930b9d53e330
BLAKE2b-256 b00c30b86e088a77492ff4e1b89b794a7013e8ba7fc475325058850ca652759e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dd14f9534fc9ab027f6725e998444384dcbe623c7be3ff63ce1d50ed1f3b049
MD5 023f8d1fc996ba3f3245d1e91fd484ea
BLAKE2b-256 7c2698535cb0425fd57f3f4e3140216d0584008cd3d8b515a2707d8697926ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99a3372ce0e37a46db144218cea4a1a7dfca3a3077b27102aa06051c51360e66
MD5 1fa2ce18ed4fd1b31946b5af2f1da65e
BLAKE2b-256 0afc88dfd3b3a95cfa76ffdae7dd89963e8ffb942032618870fb7c5607899d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on Soju06/lbson

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

File details

Details for the file lbson_py-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09618a317389c07342f7937e68a19c611a9dd05a3f59826f98f0d3141b325e73
MD5 15582b2010a3d0758135b013b7d4ec4f
BLAKE2b-256 a57b86b0195a26e6af0706afe3bbdaf5cf2dd3856c321d83f8f24a8098d896c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on Soju06/lbson

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