Skip to main content

Couchbase Python Columnar Client

Python client for Couchbase Columnar

Currently Python 3.8 - Python 3.12 is supported.

The Columnar SDK supports static typing. Currently only mypy is supported. You mileage may vary (YMMV) with the use of other static type checkers (e.g. pyright).

Installing the SDK

Wheels are provided for linux, MacOS and Windows environments for supported Python versions (currently Python 3.8 - Python 3.12).

Note: It is strongly recommended to update pip, setuptools and wheel prior to installing the SDK: python3 -m pip install --upgrade pip setuptools wheel

Install the SDK via pip:

python3 -m pip install couchbase-columnar

Installing the SDK from source

If a compatible wheel is not available, the SDK's binary will need to be built from source:

  1. Follow the steps on the BUILDING page
  2. After the build succeeds, the SDK can be used by running Python scripts from within the cloned repository or the SDK can be installed via pip: python3 -m pip install <path to cloned repository>
  3. Install the typing-extensions dependency: python3 -m pip install typing-extensions

Using the SDK

Some more examples are provided in the examples directory.

Connecting and executing a query

from couchbase_columnar.cluster import Cluster
from couchbase_columnar.credential import Credential
from couchbase_columnar.options import QueryOptions


def main() -> None:
    # Update this to your cluster
    connstr = 'couchbases://--your-instance--'
    username = 'username'
    pw = 'Password!123'
    # User Input ends here.

    cred = Credential.from_username_and_password(username, pw)
    cluster = Cluster.create_instance(connstr, cred)

    # Execute a query and buffer all result rows in client memory.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline LIMIT 10;'
    res = cluster.execute_query(statement)
    all_rows = res.get_all_rows()
    for row in all_rows:
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a query and process rows as they arrive from server.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country="United States" LIMIT 10;'
    res = cluster.execute_query(statement)
    for row in res.rows():
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a streaming query with positional arguments.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country=$1 LIMIT $2;'
    res = cluster.execute_query(statement, QueryOptions(positional_parameters=['United States', 10]))
    for row in res:
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a streaming query with named arguments.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country=$country LIMIT $limit;'
    res = cluster.execute_query(statement, QueryOptions(named_parameters={'country': 'United States',
                                                                          'limit': 10}))
    for row in res.rows():
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')


if __name__ == '__main__':
    main()

Using the async API

from acouchbase_columnar import get_event_loop
from acouchbase_columnar.cluster import AsyncCluster
from couchbase_columnar.credential import Credential
from couchbase_columnar.options import QueryOptions


async def main() -> None:
    # Update this to your cluster
    connstr = 'couchbases://--your-instance--'
    username = 'username'
    pw = 'Password!123'
    # User Input ends here.

    cred = Credential.from_username_and_password(username, pw)
    cluster = AsyncCluster.create_instance(connstr, cred)

    # Execute a query and buffer all result rows in client memory.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline LIMIT 10;'
    res = await cluster.execute_query(statement)
    all_rows = await res.get_all_rows()
    # NOTE: all_rows is a list, _do not_ use `async for`
    for row in all_rows:
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a query and process rows as they arrive from server.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country="United States" LIMIT 10;'
    res = await cluster.execute_query(statement)
    async for row in res.rows():
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a streaming query with positional arguments.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country=$1 LIMIT $2;'
    res = await cluster.execute_query(statement, QueryOptions(positional_parameters=['United States', 10]))
    async for row in res:
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

    # Execute a streaming query with named arguments.
    statement = 'SELECT * FROM `travel-sample`.inventory.airline WHERE country=$country LIMIT $limit;'
    res = await cluster.execute_query(statement, QueryOptions(named_parameters={'country': 'United States',
                                                                                'limit': 10}))
    async for row in res.rows():
        print(f'Found row: {row}')
    print(f'metadata={res.metadata()}')

if __name__ == '__main__':
    loop = get_event_loop()
    loop.run_until_complete(main())

Release files for couchbase-columnar 1.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for couchbase-columnar 1.0.1
File Size Uploaded
couchbase_columnar-1.0.1.tar.gz 6.0 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for couchbase-columnar 1.0.1
File
couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.1+ x86-64 Details
couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.15+ x86-64 Details
couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.15+ x86-64 Details
couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.15+ x86-64 Details
couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.15+ x86-64 Details
couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.15+ x86-64 Details

Total release size: 124.3 MB

Release files / couchbase_columnar-1.0.1.tar.gz

Download URL couchbase_columnar-1.0.1.tar.gz
Size 6.0 MB
Tags Source
SHA-256 checksum
How to use checksums
10bca546e74b7035f8ac06f536dcf1db287acb80b061af9da23f9c45f59c3dde
BLAKE2b-256 checksum
How to use checksums
6f9ed61c88ab516386726a6fa70c2bee2d295a50f849a4539e064202631e0843
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl
Size 2.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
602cd77a1410b98e48251b42d32824e1af4eea0b56c60f8802ba39665e01fdfa
BLAKE2b-256 checksum
How to use checksums
151274028517eac0bff41eaaaeee030656720dda48d83617c2190ef6c06812e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl
Size 4.7 MB
Tags CPython 3.13 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
7e5cf2113cec4c3c375f7c604623c9b519d434c8b8fd35285cda25d4515fe781
BLAKE2b-256 checksum
How to use checksums
9fdb375e1ecb9e256aff19f6c6064779da5cab1e9d3498cd591ebad7cb0bcce7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3d7f45ea3cf06d4d4104cf91329e563fc66a413fa33ca92fd0600b4de43cac66
BLAKE2b-256 checksum
How to use checksums
84ee17ca2e9a59bb43417d54363068c5c2246560988222cec5713be9d2ff1cfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
71ce8094ab04f801fb161fc4ad417a990c8e085cb0c895024677f542c0b53575
BLAKE2b-256 checksum
How to use checksums
e67082ed5998f02bf78e129598db3e73896c3bd6cd9d63d0f7fc69e0780cbfee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
855dcc7204d4bf4265b97a5344f356f7b836c3f26d1679bfef9affa10293972a
BLAKE2b-256 checksum
How to use checksums
2f07f52e85f3a18d22e6ac715b96772c72828b78e192247685f6d623e70cabbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl
Size 4.4 MB
Tags CPython 3.13 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
9f9b1a795970351ef64478526eb6c2bd383b6c02b2dbd60d74c9405f8bb597f5
BLAKE2b-256 checksum
How to use checksums
e72816031381982c981537fd5a2aaca74ebe80cf437a58dc72235500509937aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl
Size 2.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6825fe206f7c8e817aa22a287ba0cd08ea5b1ef85355b5c7eaf18bfa4953f43d
BLAKE2b-256 checksum
How to use checksums
72c617b9f8a1c1440a4a8c22f0e5ad4e9b9f43fada571c201e418cc0fee3240f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Size 4.7 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a9a6e6d299d66c94066ce4eacae4a6971fa2d6092eba5e3a4b6ad2824be88a34
BLAKE2b-256 checksum
How to use checksums
99e9849d8b57daabd2332d26eae7ce74398a3cab68b3e20ce35816bc6780d068
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
00af49505aa2c4702e009d78564ac8f1ae4a756c48b521bb8ede695929db5576
BLAKE2b-256 checksum
How to use checksums
d313a1fba47d404a7c1c61730b34977641c171d409f4091ca0fae4d1c4bd9ae9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cb476b47486e251465cdff60b5e0f5e149bb73e71d1997eee2b2c1cd9770633b
BLAKE2b-256 checksum
How to use checksums
90793549be447afa755fb8252ed231f5fc88f39ad04060d5ae06527aece93510
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
27d874e3a29e1a98f8ec870eb9d7efbbb79c008a5fa7027f01b0177f517d6021
BLAKE2b-256 checksum
How to use checksums
b9757f45127ad26d6c3b38e1d3bc09bb0cfd1a5ff68004ad0f08d0ae958b4dbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl
Size 4.4 MB
Tags CPython 3.12 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0fad883f34b19d8d60470fe2d552bc96df006cf2556b0e9988bd94f4cc0d6361
BLAKE2b-256 checksum
How to use checksums
519893dff75b65f6a010fc2f0f91d399d6d361787e0d7623c23ba5a311a42209
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl
Size 2.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
31d5290e67a83968364836d987bdc58d2f6ba3c79a16e4aad6d451fd9ab03741
BLAKE2b-256 checksum
How to use checksums
80a33768fda8a68df5ed624965c5c855c98a3c26af7a60fea56a84d09a0c251e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 4.7 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
72c70d2f8e3621f1611830395adf879a7130adeaa2c5f41315e0ff62719be2ff
BLAKE2b-256 checksum
How to use checksums
f3d791c20fee6350985a9d47bec4aef0d77c8e0bc7c2070bb985a4fcdd253037
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1a54a2d207edbbfdf3f90961cc20ff00a74e51590b321313b17502b1fd05d99c
BLAKE2b-256 checksum
How to use checksums
9d8a91fe4a3e59a3b1317e7bec65b9099275f526de6eb4f33a994131e767a86c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a7fcc85bbbc987df619d26e68e3eb58b573646889f2460dbbb0188085dd88606
BLAKE2b-256 checksum
How to use checksums
dc6c035512054de153b6cefd79859e8c051f3852ec1a7956156ac6cc91828dd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7cf6b518bd7f537be3051082f1f6e661487ffc5ca59ed67dae764639795cc7c5
BLAKE2b-256 checksum
How to use checksums
a35c1ed65ba7871152b9716cb00eabf8a54e210839dcc3272f1c2f73e3435031
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl
Size 4.4 MB
Tags CPython 3.11 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
937b1a173bdb561990381f33f015006e3abd2dd9911b29ae8c5dde125ae1a029
BLAKE2b-256 checksum
How to use checksums
898b475b639bcd7d702385f782323125948930580ccdb3ba278327a36e9451d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl
Size 2.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a5c37830814d88e1f11ac9031497136dcf2409356aac9dabffd554e5d7568426
BLAKE2b-256 checksum
How to use checksums
d727dea8d71491c38e7d4830e4e823fdc35cab5a7bea350db759e4ab15c12b2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 4.7 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
62694f17ed14bad4022fbce16eabac8031ad0de950e6ecabaae4a645302e9552
BLAKE2b-256 checksum
How to use checksums
974391bfcac75eba96da18f2719c16c5abb310bfdf6842058019e0c250078a1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c3f949b4f3932eea4b63e3fd3bc1c763ce42f8bf643535571a165b3c9c6f731b
BLAKE2b-256 checksum
How to use checksums
9b141ead8070783de95ef55409c69ef77e42f8ccbfe3c32621d92d3915215c09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.0 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
feb81b1ef7cd1559b2eb2caa6c91b8950edc83973478a6f0517ff25d41dbd8ce
BLAKE2b-256 checksum
How to use checksums
5ac96b814217c5689a48aed4d2032a7034a0f7ca539b3377e5f6f24822094a5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a9941217f52eb9be836e54bd3b6afc647f1a1f675c2c19a73d9b85f4fe0381f7
BLAKE2b-256 checksum
How to use checksums
7f61737836bd4e655a300bffb48e8f9993eba1133eff22deb47795378967f5a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl
Size 4.4 MB
Tags CPython 3.10 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e657194a0de3f41c3556b7035d2d8950fceef97bdfc6a1a16830fb70a39616a3
BLAKE2b-256 checksum
How to use checksums
5d5891b15292704640b2c971358a19f9374e420c0a4718267a85dbced8b8d1c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl
Size 2.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
d1fc4a3400fd97b6633d98e37a29b6fa9114727b9d4058755b99e79e315e2227
BLAKE2b-256 checksum
How to use checksums
c4b6e96148508a1b537db090766ed51f0902485b72554175f8a5696d1bca3415
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 4.7 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
460810de0698f3a22b459124129dcbe7a2c5873fdd80ac65c7f13aebeaaf5b70
BLAKE2b-256 checksum
How to use checksums
8060062fbf83e75194ddeaab47a290bc458846d05e5e49c16566d7be19165b34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 4.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f992de669b22d51a164fc65f38c5cd5cef8f5680a3e816ff1504f7a0fdf731d1
BLAKE2b-256 checksum
How to use checksums
ce9a16bd22129dcabaa4b696791a71140723ed208d4ce2d7c2526454c13d95a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 4.0 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4d66fa2e5fac5d24dfdc48cf5272be13ec821348f386ca864785adafa66ca11e
BLAKE2b-256 checksum
How to use checksums
ef48d5a424dbbd0b7eb8b44123cc6b46e3645f7d30172847231370ea33ed3400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0ee20c59b7605c8bfead9c92e53c23ea7a1301e095aa438fbb0f7ad49ff4e924
BLAKE2b-256 checksum
How to use checksums
8e8712f7039473ee792ca8c142f903e767f6b04601218eea406db04fda3a9634
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release files / couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl

Download URL couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl
Size 4.4 MB
Tags CPython 3.9 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
6ef7eba6ef86a1fd7ec6a20b5dd92f6e0f79dd65b550fbfdb3318cf27cf21ee5
BLAKE2b-256 checksum
How to use checksums
b8b0b90cf7b5e21d8b3115ba36708339a9f6d52e4eacaa24f64d73bcc94c6606
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 10, 2025.

Transparency log

Release history Release notifications | RSS feed

This release

1.0.1 This release

31 release files

1.0.0

31 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page