Skip to main content

A read-optimised binary database where many keys share one object — with zero duplication on disk.

Project description

FuseDB

CI PyPI Python MIT License Rust

A read-optimised binary database where many keys share one object — with zero duplication on disk.
Inspired by the MMDB format. Built in Rust. Exposed as a native Python library.


What is FuseDB?

FuseDB is a file-based key-value store purpose-built for enrichment lookups: scenarios where many different identifiers (IP addresses, domain names, email addresses, CIDRs, user IDs…) all resolve to the same piece of structured data.

The fundamental insight is simple. In a traditional database, if 500 IP addresses belong to the same network, you store the same organisation record 500 times. FuseDB stores it once and points every key at that single byte offset in the file.

8.8.8.8       ──┐
8.8.4.4       ──┤
8.8.0.0/16    ──┼──►  { "org": "Google LLC", "asn": 15169, "cc": "US" }  (stored ONCE)
gmail.com     ──┤
googlemail.com──┘

The result: files that are dramatically smaller, lookups that are dramatically faster, and a design that stays read-only — making it safe to share across threads and processes without any locking.


Key features

  • Native deduplication. Objects are stored exactly once. Keys are pointers — not copies. A million aliases for the same record cost only index space.
  • Sub-microsecond lookups. The entire index fits in memory as a hash map. A get() is a hash lookup followed by a single mmap read. No query planner, no transaction log, no overhead.
  • Prefix scan. The sorted key index supports efficient prefix queries over arbitrary string keys. Enumerate every IP in a subnet, every user in a domain, every path under a prefix — in a single call.
  • Memory-mapped reads. The file is never loaded into a buffer. The OS page cache handles eviction. Cold lookups fault in one page; warm lookups hit L2/L3 cache.
  • Atomic writes. build() writes to a .fsdb.tmp file, fsyncs, then renames. The on-disk file is always a complete and consistent snapshot.
  • CRC32 integrity. Every object has an individual CRC32. The whole file has a header CRC32. verify() checks both in one pass.
  • Zero runtime dependencies. The Python package ships pre-built wheels. End users need nothing but pip install fusedb and msgpack.
  • Thread-safe readers. FuseReader is fully lock-free for reads. Share one instance across 100 threads.
  • Hot-swap reloading. ReloadableFuseReader swaps to a new file atomically without dropping a single request. Background FuseWatcher polls for changes automatically.
  • Reader pool. FusePool round-robins across N readers for high-concurrency workloads. swap() replaces all readers atomically.
  • Merge. Content-addressed merge() combines multiple .fsdb files, deduplicating objects that appear in more than one source.
  • Python 3.10 – 3.13. Pre-built wheels for Linux (x86_64, aarch64, musl), macOS (Intel + Apple Silicon), Windows (x64, x86).

Installation

pip install fusedb
# or with uv
uv add fusedb

No Rust required at runtime. Pre-built wheels are available for all major platforms.

To build from source (requires Rust ≥ 1.83):

git clone https://github.com/David-Aires/fusedb
cd fusedb
uv sync
uv run maturin develop --release

Quick start

Build a database

from fusedb import FuseWriter

w = FuseWriter()

# Add an object — returns an integer ID
google = w.add_object({
    "org":     "Google LLC",
    "asn":     15169,
    "cc":      "US",
    "abuse":   "network-abuse@google.com",
})

# Map as many keys as you like to that one object
w.add_key("8.8.8.8",         google)
w.add_key("8.8.4.4",         google)   # same object on disk, different key
w.add_key("8.8.0.0/16",      google)
w.add_key("gmail.com",       google)
w.add_key("googlemail.com",  google)

cloudflare = w.add_object({"org": "Cloudflare Inc.", "asn": 13335, "cc": "US"})
w.add_key("1.1.1.1", cloudflare)
w.add_key("1.0.0.1", cloudflare)

# Atomic write: tmp file → fsync → rename
w.build("geo.fsdb")

Or use the shorthand add() when each key has its own object:

w = FuseWriter()
w.add("8.8.8.8",   {"org": "Google LLC",      "asn": 15169})
w.add("1.1.1.1",   {"org": "Cloudflare Inc.", "asn": 13335})
w.build("simple.fsdb")

Read a database

from fusedb import FuseReader

with FuseReader("geo.fsdb") as db:
    # Exact lookup — O(1)
    print(db.get("8.8.8.8"))
    # → {'org': 'Google LLC', 'asn': 15169, 'cc': 'US', ...}

    # Aliases resolve to the same object
    print(db.get("gmail.com"))
    # → {'org': 'Google LLC', 'asn': 15169, 'cc': 'US', ...}

    # Presence check — no deserialisation
    print(db.exists("1.1.1.1"))
    # → True

    # Prefix scan — sorted results
    for key, obj in db.prefix("8.8."):
        print(f"  {key:20s}{obj['org']}")

    # Inspect the file
    print(db.stats())
    # → {'num_keys': 7, 'num_objects': 2, 'file_size_kb': 1.4, ...}

    # Deep integrity check
    assert db.verify()

API reference

FuseWriter

Method Description
add_object(data) → int Serialise any Python object as msgpack. Returns its integer ID.
add_key(key, obj_id) Map a key (str or bytes) to an object ID. Many keys can share one ID.
add(key, data) → int Convenience — add_object + add_key in one call.
build(path) Write the file atomically. Safe to call while readers are open.

FuseReader

Method Description
get(key) → Any | None O(1) exact-match lookup. Returns the deserialised object or None.
exists(key) → bool Presence check without deserialisation.
prefix(prefix) → list[tuple[str, Any]] Sorted prefix scan. Returns all (key, object) pairs whose key starts with prefix.
keys() → list[str] All keys in sorted order.
items() → list[tuple[str, Any]] All (key, object) pairs in sorted key order.
objects() → list[Any] Unique objects only — deduplicated by file offset.
stats() → dict File metadata: key count, object count, file size, CRC32, offsets.
verify() → bool Deep CRC32 integrity check (whole-file + per-object). Raises on failure.
close() Release the memory map. Called automatically by the context manager.

All methods accept str or bytes as keys. FuseReader is fully thread-safe for reads — share one instance freely.

ReloadableFuseReader

A drop-in replacement for FuseReader that supports hot-swapping the underlying file. Uses a threading.RLock internally; reads and reloads never block each other for more than a single pointer swap.

db = ReloadableFuseReader("live.fsdb")

# Later, after the file has been rebuilt on disk:
changed = db.reload()   # checks mtime; swaps atomically if changed
                        # returns True if a reload occurred

FuseWatcher

Wraps ReloadableFuseReader with a background daemon thread that polls the file every interval seconds.

watcher = FuseWatcher(
    "live.fsdb",
    interval  = 30.0,
    on_reload = lambda db: print(f"Reloaded: {db.stats()['num_keys']} keys"),
)
watcher.start()

# Use exactly like FuseReader:
result = watcher.get("8.8.8.8")

watcher.stop()

FusePool

Round-robin reader pool for maximising throughput under heavy concurrency. swap() atomically replaces all readers without dropping any in-flight calls.

pool = FusePool("live.fsdb", size=8)

pool.get("8.8.8.8")            # dispatched to one of 8 readers

pool.swap("live_v2.fsdb")      # zero-downtime upgrade — all 8 readers replaced atomically

pool.close()

merge()

Content-addressed merge across files. Objects with identical msgpack bytes are stored only once in the output, regardless of which source file they came from.

from fusedb import merge

merge("geo_us.fsdb", "geo_eu.fsdb", output="geo_global.fsdb")

Exceptions

Exception When raised
FuseError Base class for all FuseDB errors.
FuseCorruptError CRC32 mismatch, truncated file, or bad magic bytes.
FuseVersionError File was written with an unsupported format version.

File format

The .fsdb format is a compact, append-once binary file. All integers are big-endian.

HEADER  (40 bytes)
  magic[4]          — b"FSDB"
  version[1]        — currently 2
  flags[1]          — reserved
  pad[2]            — reserved
  num_keys[4]       — total number of index entries
  num_objects[4]    — number of unique objects
  index_offset[8]   — byte offset of the index section
  data_offset[8]    — byte offset of the data section (always 40)
  file_crc32[4]     — CRC32 of everything after the header
  reserved[4]

DATA SECTION
  For each unique object:
  [obj_len(4)][obj_crc32(4)][msgpack_bytes]

INDEX SECTION  (sorted lexicographically by key bytes)
  For each key:
  [key_len(2)][key_bytes][data_offset(8)]

The index section is sorted, enabling O(log n) prefix scans via binary search. Multiple entries can point to the same data_offset — that is the deduplication mechanism.


Design decisions

Why a file format rather than a server? FuseDB is designed for enrichment at read time — decorating events with contextual data as they flow through a pipeline. A file loaded into memory has zero network latency and zero serialisation overhead. It can be deployed alongside every process that needs it without infrastructure.

Why Rust? The hot path (hash lookup + mmap read) needs to be as close to the metal as possible. PyO3 lets us expose a clean Python API while the core runs at native speed. The extension module compiles down to a single .so/.pyd file with no transitive native dependencies.

Why msgpack? msgpack is the most compact general-purpose binary serialisation format for Python objects. It handles dicts, lists, strings, ints, floats, booleans, and None with smaller wire size than JSON and no schema requirement like protobuf. The Python msgpack library is mature and fast.

Why is the format inspired by MMDB? MaxMind's MMDB format pioneered the idea of a read-only binary file where many IP ranges point to shared data records. FuseDB extends that concept to arbitrary key types (any string, any bytes) and arbitrary Python objects, while using a simpler flat-file layout that is easier to inspect and implement.

Why is there no update operation? FuseDB files are immutable once built. Updates are handled by rebuilding the file and hot-swapping with ReloadableFuseReader or FusePool.swap(). This keeps the read path completely lock-free and makes the format trivially safe for multi-process use.


Use cases

FuseDB is well suited for any pipeline that needs fast, read-heavy enrichment lookups:

  • IP enrichment — map IP addresses or CIDR ranges to ASN, organisation, country, or abuse contact
  • Domain classification — map domains to categories, reputation scores, or registrar data
  • Email routing — map email addresses or domains to provider metadata or spam scores
  • User enrichment — map user IDs to profile data, tier, or feature flags
  • Threat intelligence — distribute indicator-of-compromise datasets as a single portable file
  • Geolocation — embed city/region/country data in a deployable artefact that requires no database server

Performance

FuseDB is designed around the reality that enrichment lookups happen millions of times per second in high-throughput pipelines. The architecture reflects that:

  • The index is a hash map in memory — lookups are O(1) and cache-friendly
  • Objects are read directly from an mmap — no copy, no deserialisation until you call get()
  • exists() never touches the data section — it's a pure hash probe
  • prefix() uses a sorted array and partition_point — O(log n) entry point, O(k) scan
  • The file is a single contiguous allocation — the OS prefetches pages naturally under sequential access patterns

Contributing

Contributions of all kinds are welcome: bug fixes, new features, documentation improvements, benchmark results, or just opening a discussion.

Setting up the development environment

# 1. Fork and clone
git clone https://github.com/YOUR_USERNAME/fusedb
cd fusedb

# 2. Install Rust (https://rustup.rs) — requires 1.83+
rustup update stable

# 3. Install uv (https://docs.astral.sh/uv)
curl -LsSf https://astral.sh/uv/install.sh | sh

# 4. Create the virtual environment and install all dev dependencies
uv sync

# 5. Build the Rust extension in development mode
uv run maturin develop

# 6. Verify everything works
uv run pytest

Development workflow

# Format and lint Rust
cargo fmt
cargo clippy --all-targets -- -D warnings

# Format and lint Python
uv run ruff check python/ tests/
uv run ruff format python/ tests/

# Type-check Python
uv run mypy python/fusedb/

# Run the full test suite
uv run pytest

# Run tests with coverage
uv run pytest --cov=fusedb --cov-report=html

# Run benchmarks
cargo bench

Project structure

fusedb/
├── src/
│   └── lib.rs              ← Rust core: binary format, mmap, CRC32, index, PyO3 bindings
├── python/
│   └── fusedb/
│       ├── __init__.py     ← Python layer: FuseWriter, FuseReader, Watcher, Pool, merge()
│       └── py.typed        ← PEP 561 marker
├── tests/
│   └── test_fusedb.py      ← Full pytest suite (writer, reader, types, integrity,
│                               deduplication, concurrency, merge, watcher, pool)
├── benches/
│   └── lookup.rs           ← Criterion benchmarks
├── .github/
│   └── workflows/
│       ├── ci.yml          ← PR checks: fmt + clippy + pytest matrix (3.10–3.13 × 3 OS)
│       ├── release.yml     ← Wheel builder + PyPI publish on git tag
│       └── audit.yml       ← Weekly dependency security audit
├── Cargo.toml
├── pyproject.toml
└── rust-toolchain.toml

Submitting a pull request

  1. Open an issue first for non-trivial changes. It avoids wasted effort if the direction isn't a fit.
  2. Branch from main: git checkout -b feat/my-feature
  3. Write tests for any new behaviour. The CI enforces coverage.
  4. Run the full suite locally before pushing: uv run pytest && cargo clippy && cargo fmt --check
  5. Keep commits focused. One logical change per commit with a clear message.
  6. Update CHANGELOG.md under [Unreleased].
  7. Open the PR and fill in the template. The CI will run automatically.

Code style

  • Rust: rustfmt defaults. Clippy warnings are treated as errors in CI. Prefer explicit error messages in PyErr constructors — users see these.
  • Python: ruff with the project config. Docstrings on all public classes and methods. Type annotations on all public functions.
  • Tests: one class Test* per feature area. Test names describe the expected behaviour, not the implementation. No mocks for the Rust layer — use real files in tempfile.mkdtemp().

Reporting a bug

Please open an issue at github.com/David-Aires/fusedb/issues and include:

  • FuseDB version: python -c "import fusedb; print(fusedb.__version__)"
  • Python version: python --version
  • Operating system and architecture
  • Minimal reproduction: the smallest code that triggers the bug
  • Expected behaviour vs actual behaviour
  • Full traceback if applicable

For security vulnerabilities, please do not open a public issue. Email you@example.com directly with the details.


Requesting a feature

Open a GitHub Discussion rather than an issue for feature requests. Describe:

  • The problem you're trying to solve — not the specific solution
  • How you currently work around it
  • What a good API for this would look like

Feature requests that come with a prototype or a clear design rationale are much more likely to be implemented quickly.


Releasing (maintainers)

  1. Update version in both Cargo.toml and pyproject.toml to the new version.
  2. Add a release entry to CHANGELOG.md under the new version number.
  3. Commit: git commit -m "chore: release v0.3.0"
  4. Tag and push: git tag v0.3.0 && git push origin main v0.3.0
  5. The release.yml workflow builds wheels for all platforms and publishes to PyPI automatically via OIDC trusted publishing.

PyPI trusted publishing is configured at: https://pypi.org/manage/project/fusedb/settings/publishing/


Changelog

See CHANGELOG.md for the full history of changes.


License

FuseDB is released under the MIT License.


Built with PyO3 · Packaged with maturin · Managed with uv

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

fusedb-0.2.0.tar.gz (76.5 kB view details)

Uploaded Source

Built Distributions

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

fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (507.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (460.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (320.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (504.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (458.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (328.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp314-cp314-win_amd64.whl (207.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fusedb-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (505.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (459.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fusedb-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (319.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

fusedb-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (267.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fusedb-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (458.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (297.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp313-cp313-win_amd64.whl (207.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fusedb-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (506.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fusedb-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (319.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fusedb-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (267.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fusedb-0.2.0-cp312-cp312-win_amd64.whl (208.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fusedb-0.2.0-cp312-cp312-win32.whl (202.7 kB view details)

Uploaded CPython 3.12Windows x86

fusedb-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (506.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (460.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fusedb-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (319.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fusedb-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (299.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (267.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fusedb-0.2.0-cp311-cp311-win_amd64.whl (209.7 kB view details)

Uploaded CPython 3.11Windows x86-64

fusedb-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (506.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (460.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fusedb-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (319.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fusedb-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

fusedb-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (268.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fusedb-0.2.0-cp310-cp310-win_amd64.whl (209.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fusedb-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (506.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fusedb-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (460.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fusedb-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fusedb-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

fusedb-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fusedb-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (319.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fusedb-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

fusedb-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file fusedb-0.2.0.tar.gz.

File metadata

  • Download URL: fusedb-0.2.0.tar.gz
  • Upload date:
  • Size: 76.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b05992bd377238aceb03860790327480ef0b8cae74fff068f2629413a16b113c
MD5 a32c4c72b2ab84fa7f145c245746eca2
BLAKE2b-256 821776dea83018333a43c4302b4607d9f3b0d09808faf4362afe49456390da1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0.tar.gz:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8c50bdb2ff603c3bf6817f4a8671ed65e0d971cdd00240536d4165e1949e385
MD5 d89ebf78a1268df3bd63fc31219c900c
BLAKE2b-256 b11fb73284d4c62961f589fddd1582210833b84dcc712608ea222a56df850cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04d70506bbdef5b4dccc17be75e2c714c677ceda92b7b8514bfe345fabc2cc31
MD5 8c0a99f400471a6cb2df8bcd67bc84f8
BLAKE2b-256 a0e5a6b29711a60719cf314ad04a3af041765be918bf235960a82b29096f24a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b7bafba895df20d4914b23dd57e592fc4d59935bed208d5469dc07a00f128b6
MD5 e007fbc34a1a069e51d0e82f696ea914
BLAKE2b-256 92e20476bd275e2618a6b3f060f19ccb23fd240150f340bfed439f741553d146

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41d2925c669e6ec0795baa568e0de22def6027fcf7e4d31cfe5c134a487f2c15
MD5 0b6259f2cc91f3fe2e7a0df5ac4fa13e
BLAKE2b-256 92bb9768ba77d11db24f3817ee7f6eb3a971f768841a5ebee71003662e146dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3090179386ba55009f421a291d0497beabf28953399d53ec2bfb28a611fad397
MD5 08b6cdd91fbb5e1c4f5240bbe3179a32
BLAKE2b-256 de62875f5e010cdb468683acb165e3cc81f201c0b4b6f1fc695e423f45f89f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1ee52cb072a2d51335b99fb20134246ce99eee91435358617d4d191b7335eb9
MD5 836bbec135ded9a6cb8105f55b9188ee
BLAKE2b-256 ee4fa1c2bd33b915fd74f22ace9421a5647758535bda42581337d2335df95df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5fe47b7c8473ffe1e0e16ee76f6fffc52f00e167d5f3a9611d4a9039147a540
MD5 fd56da6e911693fb66239658dfdb379a
BLAKE2b-256 a086a5611da840a3c9f25a78c2daf9bc4da3afaa3cd3ff52f86e11a58d92c009

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88e8ae0b37708ea14ba1e09b80a1d0c4544e892dde146634e47652943c60b076
MD5 03c50c87e8b8ff43be4b9cb3233259f0
BLAKE2b-256 2420ac906cebcb039039cb6363b92249052651c68fb9e883e52eb10a0026555d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dcf455e121b1049c6ef34a46efbc28b94b6fa29c6b798e2e3052a99e897d415
MD5 032dd77bc4a629a123827be69676040f
BLAKE2b-256 027edc4b8a6809348b583f70b51873b0b25a9ac3aa346c6239964a441775ed49

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffec2ba1aa9703621b13ff0272265d55e82c60f1d628c8497e9e690aaf6b47d4
MD5 ea6c98e9839dbdd5d0d825cf7af0611d
BLAKE2b-256 40173436513a205a542f632c9c6178869aa35d2eefa18c6f564721fd5054fc82

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f573df4c7d319b537a9b3004dd589dddd43515de7fbe34b2928b2aa3be90001
MD5 afa2e03e6beee72a819aff5d56095aad
BLAKE2b-256 6674cfadb11c87209d9452caa55160e13166753d00b928d0f7eb06099cceaaad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40b0a960480c9f458364f96a186ef69823d845dbd6e23a6d9e18169e43416468
MD5 023e968ea7099fea40f9708348eaa5c5
BLAKE2b-256 b4197df63b13811dd987f3f7d1d8b1d497f589ed16e7b8bbf3d271c8a8d0a890

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 910eff54f1e6c9cbc2485934b432bb418edb6325c28571499dfb0d87a0c6e26a
MD5 b95ce8ca5db6d09667d577d099168283
BLAKE2b-256 0d24f4bf616f9ac6373249e1bbbeeb89d83457d8f0fa4aba13618faa6e099e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 495fe871576281caa3cda1e8b2a8d96930f2454c54d9b05ac48353e52e90bffa
MD5 3b11299ce58c39da51de535e51043c8f
BLAKE2b-256 d0584af162cda9b564c951b258905758bf4a647b870318d2ed6238f31bea001f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9bb7ccd965a87a621e01a379043ae0e037e23a5ebe1dc4e555062bc1b0c82a53
MD5 7cef18619a5a34639c22c4e9a6aa6a01
BLAKE2b-256 c8cbc7aef6c1db31c3df39b3a1ba4203d5448ef8957d6b24c89c3ea6250d19a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda812a47aaf8facc61e58633f64d17389b34258fb3cf4046fa096a89b33cfc3
MD5 9cd05e943a5f5395dfee6824f1c4601a
BLAKE2b-256 3a2518cdd4144ac076ae43d5291956e0a6590a04beb43d1605a026c6fac02cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 143664ccd5ce02cc6622dfe34bf40f30d67ec33286ebc5c3fc49fccaf4df6d16
MD5 b20b459db9ccab922a8df3825688b58f
BLAKE2b-256 63ebffd1af6f75807ed4ee0fdf18cdd684f024513aa239560c678cc73eb70593

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdbdb7dcbd9d9f25649ba6ab6530a65c1ddc2962f3595406ec5594e37ebf4b57
MD5 9f65b50102ef4c07975a325a35288f00
BLAKE2b-256 aa32914d3bfd3edee97cc072e31c7eb462e404a8017fc2398193e7b9c77664db

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a6d6afc888a16564cbedae0b6f60a1c19e72332af6973229ed0f7214f8b128e
MD5 0a5dadaed997af00b1ebdaa9c4ac7524
BLAKE2b-256 0c1180d843b3acf9da5a0915ad297b10cbfa4d03eebdb1415b232ee0d3a540cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54c2e48d3caac59f0b5016921d5ddf679d4887c76d27517ddc572d7f1ee5798d
MD5 989f5d8b4e2466538e7a7bb192b6a49b
BLAKE2b-256 44fb75d212746ce3cf4be99585f492ff5152cef93ee60b08fbf63a2e759cdb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d319cc1e3624f89d8905a02c66d67e593bcbc0c25ecb6a8bda4c139c642311a2
MD5 eaccff79bbf1e4041ed6b5b36424fdef
BLAKE2b-256 a8ac3b9cd82a83f6953bc73e465d3b6862bc9619b75b11614e13424225fe4ab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cd63561befd705343505193e935c15d5d3f6e4be6d01b0e8777d40382339fc6
MD5 96bbaa391c67f86a098a0db46a945d20
BLAKE2b-256 c50eebdbc9aafb004acc7be3a00f5b0f2e8261874f8019c542fdbf3e788dfc07

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec758f4f4406599b5b725740513dc6c6d54a81cf4c41e0adb16e12c70ab40b3a
MD5 407c322840ef5f6f3b4a1de56b92c15c
BLAKE2b-256 5edd4c7f050fca15cfa7a8cab91568dea94ebd3ad2a3a2c1bdf9e74d96bd2f8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e98922c94f839a1e096bf772879da7cbf39f9628205f7d26a9e01c8f34ae1762
MD5 0915c29c716e3b51ff97c0a99601dcc7
BLAKE2b-256 1b6faacc452b147f0aa820e774ebfef1116fb616536fa73324cf4e1291f9c543

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b9af7ccf0d8fb33eb2a8d0c949ebd51f61fbaf09a250a7d27403dc3b2f6779f
MD5 262039da104671a821b5a2562c95f436
BLAKE2b-256 410d62def18ac21de489c462cdb0be5723334b82399adb87ba1929f2f05a77a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35d43915eb3e51002fbfa8b08592762fcdc9af0d156fe79408aaefd2eb7dffdf
MD5 1811fbfcdf37397c7b23ef97f8b73d90
BLAKE2b-256 3c2b7fe8fbd0420590183fd023007079adcd1ed470d8183687913a766942d314

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 205bee6127ee76908aa765419b313017a295d792aa7200c77b445bd3a70e60ac
MD5 5ed4b25fb2f86d0124b92bb0f5fb9114
BLAKE2b-256 1f97040e37d012d14d0e65e9e4451216838758f6c48907b4ead058713fc288f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50af03c8b5b79f730fb4e9dd4f357a629b2df61a14b1e02083b2020cff6e0f1b
MD5 794d1e8067c3ce93d55c53d63a4f7214
BLAKE2b-256 937c1bbd0207478726ea0b0745e697c704310466c58096b92eec93273a9aeb67

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33b830e00078853dd3078228a383694b1d247110c886cf0317a6bc0704d3ec49
MD5 f59ed3ef7453c6d4952bb07b7543df53
BLAKE2b-256 1aa17cbf7e3a723a612c849e2484016a95eb6ea403e38fc5e72c00fd24245aac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d4f5b0415591a001028eb63ab919875b00e7f14c0a256bf295962832c763313
MD5 ec805ee22374461303b227fac3c28985
BLAKE2b-256 1d09bd213830fb638edbd5d66e611af1efe82f12f1f3b4d40856762ce5727191

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 207.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d242cfb150e1cdfa045754232a820faf55c638e8c20d62a1509d48d734f282d1
MD5 df21c15f0cd103f7862a79876775ffa3
BLAKE2b-256 87ad1df0ff11009482198246285f1941c746913b1b0553128582ce394c4da59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af10077833def27fcf818921da11d43fa938f6fc5c09d534e3919a4419b9494c
MD5 62dbb6bc97749e8a5b8de239d74afdb8
BLAKE2b-256 c64f83726d8bc8818dbc9519fc2e3fbdc589a51fcf23fb22794570725a35f194

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7efaa6b527c8ebabd5a32ee6ef9f2df399dded5883362ba27da27c7688ed3188
MD5 81b2ac158d0c6115fa32ebba6db3a3e7
BLAKE2b-256 7306f295139561e29b136acc40a8e6c9462a5969c2029373ebc44b892d2bdaa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13d19855bf96cce09fbd49c2e8e0541ac113b6138aa7fa04dd9033eaa5a8ee8e
MD5 fcad55db1b84024c74c6b31cd5c50b27
BLAKE2b-256 f1b8a8caf5d31bbb6171e1b434b11277974972b013ebda6c316bc6f22ae6bac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 124751926a06b6ff6817098aabc7af2cee69217d41f943c45aab09fb376538ee
MD5 e2093e63c536e494f3ccdf63a225b36b
BLAKE2b-256 53c416478720fa9024fe9a6c269662e53215bd1953127533e31ed712e85f2dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 950e5de83247f418181dbadbf4a7b0266b102b88d4c7e0d12405268595b43818
MD5 01f4e0882fa5c0f1ca563ea1334542ec
BLAKE2b-256 07ddc48fe555bf006da233b14d5da46f9e682309c32294291303901361bfc497

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14a7d51a958209d8334ad1ce5c4b81f17d63a07f55d98f371392bf1fab7ae308
MD5 103818ab251ab3f04eca7f8d407c9687
BLAKE2b-256 ce4bef5032683b7d063163dbe697010bbfe6c71e0a5cc208c6003cc9b0feadc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e000c02d9fe17d0fc1fc41297cfb01023713dbe98c864b8c68d3d6e84294b175
MD5 4b0d9fa1e9eedf32c9c3e1418ae43ebd
BLAKE2b-256 bee69197e71d4add0682ffa997f9c833390d4369c46bd0d0c49afbfbc729c1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e2233b4f478824782600a7c440ab40e9be882003fcadb728a3ab3b8c51665ac
MD5 6b43732781c4bbf01edc64cea451dd68
BLAKE2b-256 15ba787dc373aefd1a673d25ca55d7445c025f8f1c3a15dcb3309a430f5705d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a30831664d08c378ab193d57840b1d5df2940bfe16170127bca861bfcfea2cba
MD5 15618b376ca8adc6b1b101d2f4dd75d6
BLAKE2b-256 685ef7dd679417384d57af0d4ba2c45a11b363f6c0d23914432a9bb688bf5a9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 208.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f951be400023af111a77568211749f85c3d8d60f4a53d43ffa6ebc8b6f670730
MD5 7b652d4ffa48c3eaf16d94ac9961ab5d
BLAKE2b-256 7f42e6f5fe8cbc1183ae54b0ccf787d39c671ca14fa989ef34dce2035906a251

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 202.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 544868d6750eb62b5434c375dab905f21ad5069269b20e9fca3c58da7eb03f4f
MD5 634669bc10bf5886c461de48ebad6ef2
BLAKE2b-256 286de13d000565d504f7124e9aa7f06af968ac28aad9bbefb146d889062f587f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-win32.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7462b266137d83e65599a7f2aac710661177d02758711bb7bd9a8a57a804f9e1
MD5 0ce63698c6fc93c2330e4a8374301e2a
BLAKE2b-256 46aaa80e854fcfb2fe80d9a2d03103ea8894bfc48cf55c4f9b78a01327476e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a275e8928a9505e8fbc52a8fda2e92ef0cc26b87020662f0fc15abb5bfba0dc0
MD5 71d73b9c847f928dcccab970306cb450
BLAKE2b-256 34287aa9d628430960050e8c22c9f1a0fd16aabdb455bf44f0af1962f8a2a0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53df2f54f604c4cd3015019b7a56797fee0c39e136c259a99fe5f714b363c830
MD5 8e8573ca3632a34c10b8a007b699125f
BLAKE2b-256 889aea21adddf407e383017a4336079502f41cc8fb14ae49f71f9e74fb54b4aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9613961e8de022883175aac20b6d3e7466186ca112ebce538a1f2b4041a9c42a
MD5 ddde313bd9fb42f28c3e81c818f37592
BLAKE2b-256 51d79d67aca242cd1adc4e886c2e8dced181fe0d3e4059efd9302b5ce57bd1aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d9f3df37a22374b7971dfead16200ceb65c699661b9685832678bb893599ec2
MD5 04051cb258bb545765649695c69ae803
BLAKE2b-256 622e13ea1454805dfb45440b114e5f715fe3c6a3cc3f23eee58a5b6a29acc82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aec64bd613a283c5879e124e2e7ae18706a1c1a3cbc3daacc328b6db900e0815
MD5 5e3711e10681f35f8f2b439c6fde27a7
BLAKE2b-256 3f96e32208cc594fc4ac0582a796afd0a3ee6756f54097bf57b9bc37023e7fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fa9d0c968644e5f898b7ebde315b1cfc820960ed597d3ad56707aa282dec57d
MD5 72d82b4c4f95d515cace9e3f7974d129
BLAKE2b-256 da91a41496d2e2e5d5a220f98969c9bea9bb4134ceaaf41a5521d3ff50ef86df

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4196deb27bfb5294bef6ebf646d27b3c22660e8e3a7705289ecc61413a6fc01a
MD5 39c98c4088b20f235f74a901dd499462
BLAKE2b-256 cfda63c07b76a00d0856ca75ecf2cf411dd31c4d764b00b78cac296f503111d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a94d370d0c6ae86b3f773a70fa02cfca84d5569c79e5a5d569b734b2fad9a413
MD5 553f51af0c6aaba58c733a684121db95
BLAKE2b-256 32b56b952c90e062b0a66c226febf93945649b5333e05f9dd3ab7f1bc76514f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 209.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b28b210e1bcbcad2af6c343b41d84e68057537b0bdcf46e780aa9b693634f3fd
MD5 4c3f093356a2c6ac31d615226cd82ce9
BLAKE2b-256 722063e4bc3e5c26b4413c91792d0e72071e4090f06a2b03b8fef09aa7edbc2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97347b06f1d34a9741322c2fe425957d656f825db02fdccd11ba33fc6b2c3101
MD5 4b9d36e46f2372a5c2b75cffd82a4cad
BLAKE2b-256 176f9e9f40620cf347d67f1ced7187330098eb482ffaef9e4c9b3973a9af66fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9567671f69d8aebee565e6ab7f66c699d206689281956dbaeff4a2f71f2c2e40
MD5 4404441fc1642b09690e118135cca741
BLAKE2b-256 2188c03d7349721fc70ae249d14699b30375f8d019aa0bbd049bfb1dd191c7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18e1877499b1c99d826adbdff7f109a33870721c638f557ea82e25004afc9fcc
MD5 02584a34b837a0960390f6fd56c49cd5
BLAKE2b-256 27d332b4735c73dfb0ca11245f858a62e35624532717ac4f245b0d1bcf5e08db

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ff04164fbf698c72689467e18fa828f3edcca6fb8e781456a3d0cf3947a8283
MD5 0d1f324ad50b50f15766b2d7d34d9c9f
BLAKE2b-256 0b604f65d6c3f8df72c750f3394e34c5b6d45d1acf87aa6909f4586183ea8532

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0bd09e826e240235a8417afce76e89a8c199f798e1daa0107ff3eec9c84d18c
MD5 87b35914bcea110d7d9828e503e42a8b
BLAKE2b-256 246c10e2fd4c6f05fd579af3146f4e62d29c1271aa9de964688ce50ae091efb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 662a35344d310abbd31ce7025c24361ed0dd152f3c96dcd767b15749ba17ae6c
MD5 3b37b5ac82d4e21f1dc8a3a39360d5a6
BLAKE2b-256 79a07a478755c0cdae30564e5f1026704bbd0ee0b7b344c70f3a6c6f0cc88900

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ca14d161145e28edc73dc9fdaadfbfa69371b5170aa40d3242850e09dfff7a3
MD5 73e2ae9f2769fd2b1093cf5d1e16b4f8
BLAKE2b-256 788d3dc19e08bbcf452a67ccbdc12ba4eeb980f357a4826bf694a045287bf5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22845fa24a5f7c41346e9b82c7ee00b8f5e307bb13e96224ed90265a9acdbd7d
MD5 508943c53a600778b507dc5047450204
BLAKE2b-256 6540cbe64c3f73c6b3f62b2c7c2606ca087ff7a0e6004ac3db7cf572409f7497

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98fc9f96ac749a2c9be25d3eafcf62216087398939497304af51753d328a711d
MD5 cd30c5aaaf5b4c66f1897aa7b1ab0bc9
BLAKE2b-256 4c44012654770783c2048711b1fd57e55dd7926716534182765b19ec12c4e939

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fusedb-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 209.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6e768da30da00e221195541af9542073d30158a7e2a6711c6515d05d96d529c
MD5 73d6dc1555f15ec319ba617f03fd209c
BLAKE2b-256 292a4f5c45b66f617468e2f5d83951a0657dd8589e4195acfc151a8b21d8e789

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fba6a841d549305f93d2a2014c08bb1da501eb9420f786ca4da96f7395222bd
MD5 0371af3f2c6bde9761b8205758d33817
BLAKE2b-256 d72ed486892a9dca792d84f0b8a0485e807a33e731300b439abdfcf5d41399fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3a10f2a67743a38df1535c1e8be78b9db753b8bdf06d08f34af6f09150eab4f
MD5 902198b902e043d5ebb6ef92e7a9c82c
BLAKE2b-256 dc1347fe9a25f95547b666406a907bfafd65d4c66f13d9541bdb3d3e6df2b684

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad33ed832df0689d10463fdb5ed58cad5e2e3f1057ee83273c17437e54bc24e0
MD5 e6ea420f022167a746a870a4edcb9d2a
BLAKE2b-256 1db1c17244d58fc23934fc02685b40298061a6188777794a7c9d67923baa2f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e0ca58355739abd5fa8bfa1afdde97aabc0897813ed4e4979eb8722aee33396
MD5 899d2ffcd4107b3b58701bd95414781d
BLAKE2b-256 88a8d7baef800241e0f9858a20e06c12deb44915cfedf648bf1bb0d944504966

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 feb216a6f4d58dd8d4c76364a9e56b71bad565e54e7e2655d27f158e05697d14
MD5 d06ebc227a6d667bbd700ea78552eb23
BLAKE2b-256 dd972489f2f3231aeddb74f1b5a02ae9690a0e89c9c43616ffb01a4e7bed376c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4855207c1ee66a1236e4cb7833e315b60061e623111b0b709810008665bc4dad
MD5 37068d4cd8b6354fcc7bb17999359485
BLAKE2b-256 231e4e7e56f0a343e0bb2881f77b3770a94f1463cbf4d9199abd8350a28f8073

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dbbbab32e688019599f901fd21bae7e073dbc487bd13e31e5dc1c74caf54542
MD5 18e7240647ea47f4e73dc14f8cfa40c4
BLAKE2b-256 fcd6a7f30b1f4f288914516adcbbbeefc09766c63482f889b5a4076aff43ab7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on David-Aires/fusedb

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

File details

Details for the file fusedb-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for fusedb-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce3079fb9f0c21e8aa5a7f7a39e9f5034ad04b2dff24d6cad52dcc26a3e2ddfb
MD5 19901c63fe2401f429f00208aead3e9c
BLAKE2b-256 031172ea0c3504eea87515eeaf73167d479149ace4ff7352025078922c360ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fusedb-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on David-Aires/fusedb

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