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-py

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

Operation Benchmark lbson (ops/s) PyMongo (ops/s) bson (ops/s) lbson vs PyMongo lbson vs bson
roundtrip encode_decode_10kb_array_heavy 12472 6153 370 2.03× faster 33.71× faster
roundtrip encode_decode_1mb_array_heavy 194 96 6 2.02× faster 32.33× faster
roundtrip encode_decode_100kb_array_heavy 1904 962 58 1.98× faster 32.83× faster
roundtrip encode_decode_1kb_array_heavy 48360 25224 1493 1.92× faster 32.39× faster
roundtrip encode_decode_10mb_array_heavy 17 9 1 1.89× faster 17.00× faster
Benchmark Details
Operation Benchmark lbson (ops/s) PyMongo (ops/s) bson (ops/s) lbson vs PyMongo lbson vs bson
decode decode_100kb_array_heavy 3612 3093 159 1.17× faster 22.72× faster
decode decode_100kb_flat 4963 8171 751 0.61× faster 6.61× faster
decode decode_100kb_nested 12671 14105 1559 0.90× faster 8.13× faster
decode decode_10kb_array_heavy 22837 19378 1011 1.18× faster 22.59× faster
decode decode_10kb_flat 35846 53960 4224 0.66× faster 8.49× faster
decode decode_10kb_nested 39423 41799 3855 0.94× faster 10.23× faster
decode decode_10mb_array_heavy 33 30 2 1.10× faster 16.50× faster
decode decode_10mb_flat 35 55 8 0.64× faster 4.38× faster
decode decode_10mb_nested 594 602 414 0.99× faster 1.43× faster
decode decode_1kb_array_heavy 90415 80836 4072 1.12× faster 22.20× faster
decode decode_1kb_flat 153838 236909 20080 0.65× faster 7.66× faster
decode decode_1kb_nested 374800 488637 64522 0.77× faster 5.81× faster
decode decode_1mb_array_heavy 385 337 15 1.14× faster 25.67× faster
decode decode_1mb_flat 488 797 80 0.61× faster 6.10× faster
decode decode_1mb_nested 4904 5343 1126 0.92× faster 4.36× faster
encode encode_100kb_array_heavy 4286 1389 91 3.09× faster 47.10× faster
encode encode_100kb_flat 18709 6848 513 2.73× faster 36.47× faster
encode encode_100kb_nested 36471 13399 985 2.72× faster 37.03× faster
encode encode_10kb_array_heavy 28458 9045 585 3.15× faster 48.65× faster
encode encode_10kb_flat 95217 38317 2837 2.48× faster 33.56× faster
encode encode_10kb_nested 93763 36864 2678 2.54× faster 35.01× faster
encode encode_10mb_array_heavy 36 13 1 2.77× faster 36.00× faster
encode encode_10mb_flat 170 68 5 2.50× faster 34.00× faster
encode encode_10mb_nested 465 372 85 1.25× faster 5.47× faster
encode encode_1kb_array_heavy 106657 37554 2434 2.84× faster 43.82× faster
encode encode_1kb_flat 297390 163006 13583 1.82× faster 21.89× faster
encode encode_1kb_nested 481591 398013 43375 1.21× faster 11.10× faster
encode encode_1mb_array_heavy 404 136 9 2.97× faster 44.89× faster
encode encode_1mb_flat 2043 732 55 2.79× faster 37.15× faster
encode encode_1mb_nested 13130 6431 525 2.04× faster 25.01× faster
roundtrip encode_decode_100kb_array_heavy 1904 962 58 1.98× faster 32.83× faster
roundtrip encode_decode_100kb_flat 3889 3694 305 1.05× faster 12.75× faster
roundtrip encode_decode_100kb_nested 9141 6732 591 1.36× faster 15.47× faster
roundtrip encode_decode_10kb_array_heavy 12472 6153 370 2.03× faster 33.71× faster
roundtrip encode_decode_10kb_flat 25533 21864 1662 1.17× faster 15.36× faster
roundtrip encode_decode_10kb_nested 27376 19352 1537 1.41× faster 17.81× faster
roundtrip encode_decode_10mb_array_heavy 17 9 1 1.89× faster 17.00× faster
roundtrip encode_decode_10mb_flat 28 30 3 0.93× faster 9.33× faster
roundtrip encode_decode_10mb_nested 242 185 60 1.31× faster 4.03× faster
roundtrip encode_decode_1kb_array_heavy 48360 25224 1493 1.92× faster 32.39× faster
roundtrip encode_decode_1kb_flat 97414 94199 7550 1.03× faster 12.90× faster
roundtrip encode_decode_1kb_nested 207828 211679 22397 0.98× faster 9.28× faster
roundtrip encode_decode_1mb_array_heavy 194 96 6 2.02× faster 32.33× faster
roundtrip encode_decode_1mb_flat 390 374 33 1.04× faster 11.82× faster
roundtrip encode_decode_1mb_nested 3532 2610 347 1.35× faster 10.18× faster

📚 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.9.tar.gz (219.5 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.9-cp313-cp313-win_arm64.whl (107.9 kB view details)

Uploaded CPython 3.13Windows ARM64

lbson_py-0.0.9-cp313-cp313-win_amd64.whl (111.2 kB view details)

Uploaded CPython 3.13Windows x86-64

lbson_py-0.0.9-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.9-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

lbson_py-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (172.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lbson_py-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (161.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lbson_py-0.0.9-cp313-cp313-macosx_11_0_arm64.whl (108.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lbson_py-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl (115.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

lbson_py-0.0.9-cp312-cp312-win_arm64.whl (107.9 kB view details)

Uploaded CPython 3.12Windows ARM64

lbson_py-0.0.9-cp312-cp312-win_amd64.whl (111.2 kB view details)

Uploaded CPython 3.12Windows x86-64

lbson_py-0.0.9-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.9-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

lbson_py-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lbson_py-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lbson_py-0.0.9-cp312-cp312-macosx_11_0_arm64.whl (108.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lbson_py-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl (115.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

lbson_py-0.0.9-cp311-cp311-win_arm64.whl (108.6 kB view details)

Uploaded CPython 3.11Windows ARM64

lbson_py-0.0.9-cp311-cp311-win_amd64.whl (110.8 kB view details)

Uploaded CPython 3.11Windows x86-64

lbson_py-0.0.9-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.9-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

lbson_py-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lbson_py-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (161.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lbson_py-0.0.9-cp311-cp311-macosx_11_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lbson_py-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl (116.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lbson_py-0.0.9-cp310-cp310-win_arm64.whl (108.3 kB view details)

Uploaded CPython 3.10Windows ARM64

lbson_py-0.0.9-cp310-cp310-win_amd64.whl (109.1 kB view details)

Uploaded CPython 3.10Windows x86-64

lbson_py-0.0.9-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.9-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

lbson_py-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lbson_py-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lbson_py-0.0.9-cp310-cp310-macosx_11_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lbson_py-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

lbson_py-0.0.9-cp39-cp39-win_arm64.whl (107.3 kB view details)

Uploaded CPython 3.9Windows ARM64

lbson_py-0.0.9-cp39-cp39-win_amd64.whl (109.2 kB view details)

Uploaded CPython 3.9Windows x86-64

lbson_py-0.0.9-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.9-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

lbson_py-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lbson_py-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

lbson_py-0.0.9-cp39-cp39-macosx_11_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lbson_py-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl (114.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: lbson_py-0.0.9.tar.gz
  • Upload date:
  • Size: 219.5 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.9.tar.gz
Algorithm Hash digest
SHA256 9b91786bdeb2b8baee6280bd48cf3fd69d02a8788634b106eab68f434b9339e5
MD5 2d6cbdc13dfea48ed418e9b88cbe6260
BLAKE2b-256 60bc9d159124a43bfe6a4dac88acaaa2f1b96ddad383fa77457765dc89efb4b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9.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.9-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 107.9 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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b97306f528062ef487b1c3a3223dbc7b1442ad6956ffad18bbafb3d22646957d
MD5 d3f5a10e9999f7c4684011e5535d8e9d
BLAKE2b-256 15e110a5250b03dcadb0315aa98184e3b19ad2f7d77b66f1b1824812e09f9485

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 111.2 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9625fd2917086a6ce0b4a827a9d357178eea52b2c30732bda9eb2f7140c4e817
MD5 7630b41f67bae4ace5271f8636396364
BLAKE2b-256 59056475d419b09fba8c747203d7c5e04e537db8ed5ca67c1db6137d40512dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a48b0401bb622c416bea4419742a929026d3bdd229277e44f8b71c33e73a2bd
MD5 b7315a50045b053881f45a4073598f6c
BLAKE2b-256 12fa61c4b799e6aa0ee35e68cd2f05e3c88be99e02e74c01a67181a4c1201abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7f699012a9d623f302dd91555f051995b274fb9c75d6e73392739c23dc58f49
MD5 ebc79f93d307b8d277edf7246379f571
BLAKE2b-256 013f6f5ce1fd018ff28a650f9e294482404eb5c258b68aa2348a5404512cdf91

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a68ceaefd38ab79fb54c0d4336f119dfe875f040e153d80b5a31f41911410cd
MD5 c49442ecce0ba449b2b0509d085c5872
BLAKE2b-256 65ca651c299512a07e121fccc06e0ed129cbfadd211d5ad72d37fefa5e59e343

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0a708dab136a0f045644a073a3828f295f95d965dc25dd9177e089aba4e75e4
MD5 72a7e3f67af20efa287b3238b9b20f36
BLAKE2b-256 dddbb8eabff05661adee849278c1b4db9af2b148262bfa6e70632ce3609ef965

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fc1fdbb69eda6f9cc9994c07ab8766c4b73966e26ff5bbd925f07b7b37e5d08
MD5 8f9f76c41d3716c0a3fb220ea019de5f
BLAKE2b-256 6b88e1f0632ddcade8065260559c045a7bda15b7bb2640b63eab7c097110dc6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 44e76d4cfba5a7025d91ca7e0d39dcb7b9aab4176a4396bf2ad4da7d853856d8
MD5 489d42de0948c48794485e5a434b0c9e
BLAKE2b-256 8c447f3a3cc831f0aca530b7ed78f846c8a85728af7107969c3aee8b1f21397e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 107.9 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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 67495e00a04339f81922dcd37f043fa069d8a98f0ef7fb71d9e42d52c2c3cf2c
MD5 274b1c4ea5119a7af12243ab28d9f65c
BLAKE2b-256 d8037d3e531d6b2c5f4b05afe8ebc8ffa93353d6e39302e9b760250ab3be8d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 111.2 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c79e2d1fab7addfd09dcaf06f61bcab0a80c573d0fb54a4a931d2f6d30b2f9ed
MD5 eea89e3fd5d3e499e2386c8a3f7cbe68
BLAKE2b-256 4b6bcc40ee221da99b968bfdc8547ed25773fed1e6cbcdac1c97b5cb4ea17a4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0babc00b9b27845381a362971f6e8bfd9bf8355fd5bf8e12ed70804f76328bb2
MD5 5c69d9d2097b94eb598478844179d53e
BLAKE2b-256 bd6f1a78b9c56a5bfc0ddbf8249b7907915510a748115a3fcd8b972aa823f7c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d67ca0b3116618f1b69c4d39d1812ca119bedbd88aa7f6eec4c915cc01aeda4f
MD5 15b384ed56b664ff87c5655b0e5ecf9f
BLAKE2b-256 c9609781d13ff46d3817a567bac4eb91f40e2016c4056710453a89b2f576f390

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e786da76ad4949e1af6036ebe5231a72189b41d07da50c7157e5b7968c27708
MD5 f4b8259477e478079a788f1c84718b9c
BLAKE2b-256 2c30a5767f0cf2bdd1acb529f657694505ee3fccf0be40f558713dbe6e852523

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7feb9ba71be1d09cc306b00198be48b80b0c88b3bfe3d1ce1ea9de8cb2bcddb
MD5 12bf3d5c253b9c9555c02939d898827a
BLAKE2b-256 2a44c8143575b884accdc3291926f3a89800f4b115c1793585337db49d1448c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af732df0b1378f2417e9d921314a265bd470d04ec7049dd3dc229180997f9a94
MD5 d3ec64e704de371085724e2a83a78aae
BLAKE2b-256 39baea73a6b5f2f668d01e7f33d118f741e1e6717994d4db8f0b4ba0e1b24d70

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e91dbaf536a2038ec326fe8c1f75cdda6f6343ca9e867bc31d8db55284ecf361
MD5 4c3f56cebe813eeae60a322f8a47ede8
BLAKE2b-256 37aa7a59628e132fd6e481982daa078db2207725308a82e4228016e5f51dfb1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 108.6 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.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3c72f8dc54e84aecc2fec233bb55c88d9f428ecf349e2d390424a8778c7ac7e5
MD5 239b25fedfcd70b4d891403f27e79e30
BLAKE2b-256 5f7acb403593f4cd2c6a1835a982f7512e8f0c71f2265d44939c9102ab2c7ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 110.8 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa1afb84cda97df70ad15dd7c38b40b30f6c99e77b660d0937385ee9e8a5bc94
MD5 29f18afc960b6a36339973272b6513a3
BLAKE2b-256 eba5fb3516651c4eac5a07e85dab3340ee3445919f25e5ad2346f75cf08d5be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d702892b473547b09eab388097b08b836e62b42b2a3e63a030c33e617c243e74
MD5 2de88130e2839c0ed374eeb028a1b877
BLAKE2b-256 c540139ec21f65ceacbd093eeb72a314eb6fe7e3941ad32be1890efa9d86a77e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38fd28ce215521295798d624d77f382c285e34a14cfcaffb331d55844ba004b4
MD5 8617147d79205454c86f8ccdc39817ad
BLAKE2b-256 7563de22e0c0582386b1cfdc817e276e422e578a0928fb44cc0b05bceb24ae56

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d437a5ca912e210dca21c34c7fd906b617b6e8084097d55184b9ff1d942319b
MD5 8734ec6c798561076865947df48c0a72
BLAKE2b-256 235a3c72212c2b6478a91d7ac22d4ac48045cbb6c9f20e7dcd6b41dcafca576a

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fd78d171b4597a04a41a2c626eb649808ad5358d34221712e8aa2a02911e833
MD5 4fd7c8146f7d24129d53285384ede0c1
BLAKE2b-256 6d26505de702de2b006e18c304422c37bd36eab4ecaf61a4b4a0adb9ce4ddfa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 958a47c3262c82761ac2383742e460caf242f51e82cfed85b9688b1879b92638
MD5 10268832476370d3737ac704457cd5b0
BLAKE2b-256 a0d47538686b6d9f8678b5ff935b763913dea1cf7cdb527e6b5cba4409e32099

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ab22bc8741c69c2d8b3c0c8f5123ca147015270a387db910c4e0d275f10fcfb
MD5 adf4f91c86c3140bb03b008c83ec9dac
BLAKE2b-256 bcde23394b934f21940a29dcf4d6c8ec561d76cf09a0728cf5d6eca3fcf3186d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 108.3 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.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1936947f85a4cad8f82dee64b2e017f85d6e39dacd6b8265994d6f28a5e908e0
MD5 c5290d3c4de4116701f7ae994bdd7e50
BLAKE2b-256 2d63ed90980f9b24f32f716ff21e642e4ef9560e9f6cfa479f205d742cbb7764

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 109.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 lbson_py-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d7670b2157f7eac81ae8f93447dc058422e4595b2ef6b6feea99da0578436ea
MD5 d07e07e5354c56ba34c9264364127149
BLAKE2b-256 e8f96f6a532586b2f2c9826bbb85a3edd53335e04fef4c19d125c7ac7bd9dc77

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a46c745c3f15f86eb1a67e4a1281f11253ffd2f6dd2b5bbe39f8be44eeeef9a4
MD5 d63afecbdbd1011b11f58be1df081432
BLAKE2b-256 9c5f6a36be2c7910766e9a00d3bb1f88b2f0bbf6fecdde3a85f3a27bd2afbe9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21dd58aca43ee6be8c185805f3a5de6d831f59ed0e8bdc7f3c7cf61bcac34a7b
MD5 12eebbd44c5c53988536a12283168587
BLAKE2b-256 8fd7673c5bc7cfd25b0b55d935efc3d7922d31ff8fa5851299b7a8f207e5a785

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 168947710c8ba6a90abaa981d1f1416e1432e139ecb7ae912b2580d113503e66
MD5 f53620ad2f476b41bbb5b712f77a17c0
BLAKE2b-256 846df90e9ae3373802934a1efac4569fbf9a459ede8d3304da0756dba97920fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 590cd0127067318cfc6a9d5230e165ea97ca5b5d56608d1eab2b5939e220e686
MD5 9628b266cb672a66ed17207b60dc84ad
BLAKE2b-256 be8723b2b0f574057e3944ad69bfe51584145a9d54331839b5364b86be9998b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f947a0a715e8a7082dcbac866ea13ff8eca802b6c21265a5409fc152acd8567
MD5 660f47392e473640f2d5c1e8dcaff841
BLAKE2b-256 d344614b6f17041a357668d139ab3edcff843aba60042349807dc138539fc00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed901261fdcc69ab0149c8a7608eae049c3b26f5d6f8acd4d01a297786055731
MD5 23e8eb9627a2aa2ae0479c6534f4f6ca
BLAKE2b-256 44c4295835e6cf5211f97e2fa03482d75cefd868db78a08a324d9d7c1249484f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 107.3 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.9-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 01937c51036b63a0f50c33bacc7cc4527c4226092f1d56389e2d947617758391
MD5 58ec22477351d833e1d7450dd06fe960
BLAKE2b-256 e1ae8e2fd79c0b58afdfcb0e21bdf48438a5b5fa83eb2fbfbe0e9be60a281543

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lbson_py-0.0.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 109.2 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85a050e44324ee5baada098314ae103ccc5a6bb1bbc2833a45b144f7d2394208
MD5 b1670844dca9022157e7f66cb7fd1e43
BLAKE2b-256 3d3d3ebb64c0a53671f92dc15a645bab266192d16a8ac81d90fedd00252dd9df

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca89cbe6c35bef08570114601e266e004490a868e892a53ba7f0d990057b191c
MD5 5e8db3320058b3248e229612458149ec
BLAKE2b-256 43fe8b5f848fca62c1ff871474d77030660eff8f5841bb6d06e64f9df87befdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b95c5ea660e11d00f36286d570ff277f28a679768dfa19c85699544d7a6fe3f
MD5 d29e18f86b21d83bee1180759ebde286
BLAKE2b-256 28ef5dc1c7b1210ef38a430421a7fffcfe45ed4e33ea5a20f517be684ff55fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c6493523c599f10cc485f40eb2fdf6f553150a16ad02a3948bef10244fbf25c
MD5 47323376ae751aa19a6aa3c4b7cd7898
BLAKE2b-256 01d58df343b54b930c0b9d137cceafafb7dba605995379a3ff558e592a5fa310

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d4bacb9909e5118bf17e574ea4a440772a450bc769c9e50f00c74d135a63c2a
MD5 87d2ffd9c689a9a7ea255e326dfd4856
BLAKE2b-256 5b1a9f4c6ab5e22afa97147d4185abb60abd004c7e19c47430addefcac051f32

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3903bc08150253e8bfc6a2eed70f09de0ed29065ab9b50cc5438e87e1d0a7f63
MD5 80e239eb660cea0c22c6b4ba6c12a295
BLAKE2b-256 0248762a9dbac6af442fb4491def38e2383e45533978b4e934d200d5f83e9608

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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.9-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lbson_py-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86d8b3a465f8b5d5e33d90ba8fd636a65974f689838980b46abe057cdd25ec3c
MD5 b8468f243e807e423f2744a5054cc03f
BLAKE2b-256 292e0a7e6db8aaf4ae9e414e8a5f776f25b652cb26989ce9c647a6141eaef3b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lbson_py-0.0.9-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