Skip to main content

Package with templates and snippets for elasticsearch

Project description

chibi_elasticsearch

https://img.shields.io/pypi/v/chibi_elasticsearch.svg Documentation Status

chibi_elasticsearch is a lightweight Python package that provides templates and reusable snippets for working with Elasticsearch. It is intended to simplify common tasks such as creating models class.

The package is designed to work with elasticsearch_dsl.

basic use

models

from chibi_elasticsearch.models import Chibi_model
from chibi_elasticsearch.analyzers import name_space, name
from chibi_elasticsearch.snippet import create_index_if_not_exists
from elasticsearch_dsl import field


class Person( Chibi_model ):
        name = field.Text(
                analyzer=name, multi=True,
                fields={
                        'space': field.Text( analyzer=name_space, multi=True ),
                        'keyword': field.Keyword( multi=True ),
                }
        )

create_index_if_not_exists( Person )

some_one = Person( name="john smith" )
some_one.save()
print( "name:", some_one.name )
print( "create_at:", some_one.create_at )
print( "update_at:", some_one.update_at )

review config

from chibi_elasticsearch.config import load_elasticsearch_config, review_elasticsearch_config
from chibi.config import configuration

configuration.elasticsearch.connections.default.hosts = 'localhost'
configuration.elasticsearch.connections.default.port = 80
configuration.loggers[ 'elasticsearch' ].level = "WARNING"

# Load connections (e.g., from chibi config)
load_elasticsearch_config()

# Check configuration
if not review_elasticsearch_config():
        raise RuntimeError("Elasticsearch not configured correctly")

History

1.1.0 (2026-03-03)

  • add logic for build test index using chibi config

    from chibi.config import configuration
    configuration.elasticsearch.test_app = True
    assert build_index_name( 'hello' ) == 'test__hello'

1.0.0 (2026-03-03)

  • definition for base model and analyzers

  • configuration handling for connections

  • analyzers ready for text processing

  • basic model with automatic created_at and updated_at fields

0.0.1 (2026-03-03)

  • First release on PyPI.

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

chibi_elasticsearch-1.1.0.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.

chibi_elasticsearch-1.1.0-py2.py3-none-any.whl (5.7 kB view details)

Uploaded Python 2Python 3

File details

Details for the file chibi_elasticsearch-1.1.0.tar.gz.

File metadata

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

File hashes

Hashes for chibi_elasticsearch-1.1.0.tar.gz
Algorithm Hash digest
SHA256 4529d7e354f0b4e51898a8e32de4b01fb3ad877ac9743b41263543064a27d630
MD5 50aa5ad1b4414ce6732d74a6857b968a
BLAKE2b-256 da593d55335cbd745fe40ec6403f546ed43cad41a9e6f29ca33155dd09852dd7

See more details on using hashes here.

File details

Details for the file chibi_elasticsearch-1.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for chibi_elasticsearch-1.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 3291ab54725dc8fa2b37e0d17d0e9ca11139ce2ab221bd9c8bec69b747972877
MD5 fe9bbf41cf3dc50b2234cc8f9e6e2f86
BLAKE2b-256 f2d4da7493cfad6d59ac775a3ec67050e93cc78d2b5b1133b2831249f71d35b8

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