Python client for Xapiand
Project description
Python Xapiand Client
Official low-level client for Xapiand. Its goal is to provide common ground for all Xapiand-related code in Python; because of this it tries to be opinion-free and very extendable.
Installation
Install the xapiand
package with
pip:
pip install xapiand
Example use
Simple use-case:
>>> from datetime import datetime
>>> from xapiand import Xapiand
# by default we connect to localhost:8880
>>> client = Xapiand()
# datetimes will be serialized
>>> client.index(index="my-index", id=42, body={"any": "data", "timestamp": datetime.now()})
{'#docid': 42, '#shard': 2 '_id': 42, '_version': 1, 'any': 'data', 'timestamp': '2019-07-18T09:04:54.182665'}
# and deserialized
>>> client.get(index="my-index", id=42)
{'#docid': 42, '#shard': 2 '_id': 42, '_version': 1, 'any': 'data', 'timestamp': '2019-07-18T09:04:54.182665'}
Features
The client's features include:
- translating basic Python data types to and from msgpack
- configurable automatic discovery of cluster nodes
- persistent connections
- load balancing (with pluggable selection strategy) across all available nodes
- failed connection penalization (time based - failed connections won't be retried until a timeout is reached)
- thread safety
- pluggable architecture
License
Copyright 2018-2019 Dubalu LLC Copyright 2017 Xapiand
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xapiand-0.1.3.tar.gz
.
File metadata
- Download URL: xapiand-0.1.3.tar.gz
- Upload date:
- Size: 169.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c74d163ff9e233676048b386c95678f2b12cff313e0891044f43ee5dff0da847 |
|
MD5 | 7a7565383bedb27ba663ca4c465107d7 |
|
BLAKE2b-256 | be53f521f3415eeca5de6d039929b68c4296518b948311d05710296a28107e44 |