Skip to main content

A generic Python ORM-like base class for building models backed by Xapiand

Project description

xapian_model

A generic Python ORM-like base class for building models backed by Xapiand, a distributed search engine. Part of the Dubalu Framework.

Features

  • Fully async — All Xapiand operations use async/await (powered by pyxapiand>=2.1.0 and httpx).
  • BaseXapianModel — Base class with attribute interception, save/delete operations, and template-based dynamic index naming.
  • Manager — Descriptor-based manager providing create(), get(), and filter() query methods.
  • SearchResults — Dataclass wrapping search results with total counts and aggregations.
  • Schema auto-provisioning — Automatically provisions the schema on first write.

Installation

pip install xapian-model

Dependencies

Requires pyxapiand 2.1.0+ (async client):

pip install "pyxapiand>=2.1.0"

Quick Start

import asyncio
from xapian_model.base import BaseXapianModel

class Product(BaseXapianModel):
    INDEX_TEMPLATE = "products/{store_id}"
    SCHEMA = {
        "name": {"_type": "text"},
        "price": {"_type": "float"},
        "active": {"_type": "boolean", "_default": True},
    }

async def main():
    # Create a product
    product = await Product.objects.create(store_id="store1", name="Widget", price=9.99)

    # Retrieve by ID
    product = await Product.objects.get(id="abc123", store_id="store1")

    # Search
    results = await Product.objects.filter(query="widget", store_id="store1", limit=10)
    for item in results.results:
        print(item.name, item.price)

    # Update and save
    product.price = 12.99
    await product.save()

    # Delete
    await product.delete()

asyncio.run(main())

Requirements

License

MIT — Copyright (c) 2026 Dubalu International

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

xapian_model-0.3.1.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

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

xapian_model-0.3.1-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file xapian_model-0.3.1.tar.gz.

File metadata

  • Download URL: xapian_model-0.3.1.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for xapian_model-0.3.1.tar.gz
Algorithm Hash digest
SHA256 f017da522130950754dd4fa35efedee0414d97f965eb3e39d0f520bca8addee3
MD5 dcb70c02ec3ac4d27c2b0d7806e18f26
BLAKE2b-256 13c3ffd752eab0d0e16b203a2edec2d0a76b312d0fe4e884cfb5fa3c3d9353a0

See more details on using hashes here.

File details

Details for the file xapian_model-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: xapian_model-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 7.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for xapian_model-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b29f780cc3b8d6486ee42bd08c7b6fbde8f48f2ba081c82b0374a90e581bac48
MD5 e90d223e6576b99a03a13f7f6e55fe27
BLAKE2b-256 5ff506a88de4c3ef688ca9efb9042c75d7553d4c09d7a1314a5dc8f4f2f5507e

See more details on using hashes here.

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