Skip to main content

Simple Couchbase helper for Python 3.8+ adding basic functionality

Project description

couchbase-helper: A simple helper package for Couchbase operations

badge badge badge badge


Intro

While the Couchbase packages is easy enough to use, sometimes it also just requires some boilerplate code which becomes tiring to duplicate every time you need to perform simple document operations. At least, that's what I thought. So, I started creating a simple re-usable script which later became a class and ... well, here's Couchbase Helper!

Couchbase Helper is currently rather basic and mostly/only support the following operations fully:

  • insert
  • insert_multi
  • upsert
  • upsert_multi
  • replace
  • replace_multi
  • get
  • get_multi
  • remove
  • remove_multi

It currently also has very basic functionality for view queries (view_query) which isn't all that fancy. Follow issue #18 for updates on this.

An N1ql (SQL++) helper class is also available, which provides chainable methods to create SQL++ queries to select from indexes.

Installation

Installation is as you're used to, using your favorite package manager:

$ pip install couchbase-helper
... or
$ uv add couchbase-helper
... or
$ poetry add couchbase-helper
... and so on

Examples

Basic operations

from couchbase_helper import CouchbaseHelper, Session

# Connect to Couchbase server/cluster
session = Session(
    hostname="localhost",
    username="username",
    password="password",
    bucket="bucket",
    timeout=10,
)
cb = CouchbaseHelper(
    session=session,
)

# Insert document
document = {
    "foo": "bar"
}
cb.insert("foo1", document)

# Get document
document = cb.get("foo1")
print(document["foo"])  # bar

# Update document
document["hello"] = "world"
cb.upsert("foo1", document)

# Replace a document
new_document = {
    "bar": "baz"
}
cb.replace("foo1", new_document)

SQL++/N1QL examples

from couchbase_helper import Session
from couchbase_helper.n1ql import N1ql

# Connect to Couchbase server/cluster
session = Session(
    hostname="localhost",
    username="username",
    password="password",
    bucket="bucket",
    timeout=10,
)
session.connect()
n1ql = N1ql(session=session)

# Select documents where foo=bar
rows = n1ql.where("foo=", "bar").rows()
for row in rows:
    ...

# You can also select specific columns, from a different bucket , scope, or even collection than the session's:
rows = n1ql.select("callsign").from_("travel-sample", "inventory", "airport").where("city=", "San Jose").or_where("city=", "New York").rows()
for row in rows:
    ...

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

couchbase_helper-0.1.1.tar.gz (17.1 kB view details)

Uploaded Source

Built Distribution

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

couchbase_helper-0.1.1-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file couchbase_helper-0.1.1.tar.gz.

File metadata

  • Download URL: couchbase_helper-0.1.1.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.9

File hashes

Hashes for couchbase_helper-0.1.1.tar.gz
Algorithm Hash digest
SHA256 74d9a1606b69f697d958b7c26474f0d8a99bf9d562102f22b867c2f430c000cd
MD5 15bbb097860259378c8e0fde06412b9c
BLAKE2b-256 687ac24b7e8942e7770d2b13c529f22e94a1364dbe02f922fc6d136f1b78993c

See more details on using hashes here.

File details

Details for the file couchbase_helper-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for couchbase_helper-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 088613d2b59324b93ac029e633055bd2604ec60ba1947610a068c1071e7040fd
MD5 779d4584a7a00b337771e23408176d2b
BLAKE2b-256 5176442427c1c5e217011293405d7781cc81fe038adccab1e49805a404be828a

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