Skip to main content

Python Client for Couchbase Columnar

Project description

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())

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_columnar-1.0.1.tar.gz (6.0 MB view details)

Uploaded Source

Built Distributions

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

couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file couchbase_columnar-1.0.1.tar.gz.

File metadata

  • Download URL: couchbase_columnar-1.0.1.tar.gz
  • Upload date:
  • Size: 6.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for couchbase_columnar-1.0.1.tar.gz
Algorithm Hash digest
SHA256 10bca546e74b7035f8ac06f536dcf1db287acb80b061af9da23f9c45f59c3dde
MD5 82c9ecb7d9d10bd72e817dc6045d5a73
BLAKE2b-256 6f9ed61c88ab516386726a6fa70c2bee2d295a50f849a4539e064202631e0843

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1.tar.gz:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 602cd77a1410b98e48251b42d32824e1af4eea0b56c60f8802ba39665e01fdfa
MD5 c176239855ecfba694843af48b82f62b
BLAKE2b-256 151274028517eac0bff41eaaaeee030656720dda48d83617c2190ef6c06812e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e5cf2113cec4c3c375f7c604623c9b519d434c8b8fd35285cda25d4515fe781
MD5 cdde166bb2165f765a854cfcfd85996b
BLAKE2b-256 9fdb375e1ecb9e256aff19f6c6064779da5cab1e9d3498cd591ebad7cb0bcce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3d7f45ea3cf06d4d4104cf91329e563fc66a413fa33ca92fd0600b4de43cac66
MD5 d0008232eec8b51405bdd06802e4f724
BLAKE2b-256 84ee17ca2e9a59bb43417d54363068c5c2246560988222cec5713be9d2ff1cfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 71ce8094ab04f801fb161fc4ad417a990c8e085cb0c895024677f542c0b53575
MD5 d4a862586129b01b995314a939a425f9
BLAKE2b-256 e67082ed5998f02bf78e129598db3e73896c3bd6cd9d63d0f7fc69e0780cbfee

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 855dcc7204d4bf4265b97a5344f356f7b836c3f26d1679bfef9affa10293972a
MD5 c51d9c7a9bd4232b4a9bf5fcb8ddaf8f
BLAKE2b-256 2f07f52e85f3a18d22e6ac715b96772c72828b78e192247685f6d623e70cabbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9f9b1a795970351ef64478526eb6c2bd383b6c02b2dbd60d74c9405f8bb597f5
MD5 1d1255c9b815fd971b81c89ec5280404
BLAKE2b-256 e72816031381982c981537fd5a2aaca74ebe80cf437a58dc72235500509937aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6825fe206f7c8e817aa22a287ba0cd08ea5b1ef85355b5c7eaf18bfa4953f43d
MD5 7d0647e6a9a55d798717e79df92a33a4
BLAKE2b-256 72c617b9f8a1c1440a4a8c22f0e5ad4e9b9f43fada571c201e418cc0fee3240f

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9a6e6d299d66c94066ce4eacae4a6971fa2d6092eba5e3a4b6ad2824be88a34
MD5 40d081b69440a9baed3ebf7a39eb72fb
BLAKE2b-256 99e9849d8b57daabd2332d26eae7ce74398a3cab68b3e20ce35816bc6780d068

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 00af49505aa2c4702e009d78564ac8f1ae4a756c48b521bb8ede695929db5576
MD5 5c7c00a20511efacf6e0846f7b3f6bf5
BLAKE2b-256 d313a1fba47d404a7c1c61730b34977641c171d409f4091ca0fae4d1c4bd9ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cb476b47486e251465cdff60b5e0f5e149bb73e71d1997eee2b2c1cd9770633b
MD5 4152d4f10e1bc9735f9c34c73d06b60c
BLAKE2b-256 90793549be447afa755fb8252ed231f5fc88f39ad04060d5ae06527aece93510

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27d874e3a29e1a98f8ec870eb9d7efbbb79c008a5fa7027f01b0177f517d6021
MD5 8cfa983a077331edbfd7315d778abfe3
BLAKE2b-256 b9757f45127ad26d6c3b38e1d3bc09bb0cfd1a5ff68004ad0f08d0ae958b4dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0fad883f34b19d8d60470fe2d552bc96df006cf2556b0e9988bd94f4cc0d6361
MD5 b8f772b9a235d6167c1fe043d277bf2a
BLAKE2b-256 519893dff75b65f6a010fc2f0f91d399d6d361787e0d7623c23ba5a311a42209

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31d5290e67a83968364836d987bdc58d2f6ba3c79a16e4aad6d451fd9ab03741
MD5 3e1f4eb2a2f2d95b235f5180a58a1647
BLAKE2b-256 80a33768fda8a68df5ed624965c5c855c98a3c26af7a60fea56a84d09a0c251e

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72c70d2f8e3621f1611830395adf879a7130adeaa2c5f41315e0ff62719be2ff
MD5 222e943ea80546e7dc9b8f5033be179e
BLAKE2b-256 f3d791c20fee6350985a9d47bec4aef0d77c8e0bc7c2070bb985a4fcdd253037

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1a54a2d207edbbfdf3f90961cc20ff00a74e51590b321313b17502b1fd05d99c
MD5 239912ebad2bc092fb87f923ea6a2cd5
BLAKE2b-256 9d8a91fe4a3e59a3b1317e7bec65b9099275f526de6eb4f33a994131e767a86c

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a7fcc85bbbc987df619d26e68e3eb58b573646889f2460dbbb0188085dd88606
MD5 c5b82adf9435a588c09fb2caa76ae62c
BLAKE2b-256 dc6c035512054de153b6cefd79859e8c051f3852ec1a7956156ac6cc91828dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cf6b518bd7f537be3051082f1f6e661487ffc5ca59ed67dae764639795cc7c5
MD5 56a50cabc8d3ed1d8fcc12a8b958c384
BLAKE2b-256 a35c1ed65ba7871152b9716cb00eabf8a54e210839dcc3272f1c2f73e3435031

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 937b1a173bdb561990381f33f015006e3abd2dd9911b29ae8c5dde125ae1a029
MD5 8ceae8a5861cd6763331f186d1a4dee5
BLAKE2b-256 898b475b639bcd7d702385f782323125948930580ccdb3ba278327a36e9451d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5c37830814d88e1f11ac9031497136dcf2409356aac9dabffd554e5d7568426
MD5 5eea7926c1f899e96e39bfb5782d3ba8
BLAKE2b-256 d727dea8d71491c38e7d4830e4e823fdc35cab5a7bea350db759e4ab15c12b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62694f17ed14bad4022fbce16eabac8031ad0de950e6ecabaae4a645302e9552
MD5 47328bef95a2722427de2692602eead0
BLAKE2b-256 974391bfcac75eba96da18f2719c16c5abb310bfdf6842058019e0c250078a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c3f949b4f3932eea4b63e3fd3bc1c763ce42f8bf643535571a165b3c9c6f731b
MD5 e924c3e41b2b3a8a4814ce3cb054e562
BLAKE2b-256 9b141ead8070783de95ef55409c69ef77e42f8ccbfe3c32621d92d3915215c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 feb81b1ef7cd1559b2eb2caa6c91b8950edc83973478a6f0517ff25d41dbd8ce
MD5 b7755c469ef3c86ee0fb9433aa6682a7
BLAKE2b-256 5ac96b814217c5689a48aed4d2032a7034a0f7ca539b3377e5f6f24822094a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9941217f52eb9be836e54bd3b6afc647f1a1f675c2c19a73d9b85f4fe0381f7
MD5 b24f82ae85cbee2331fcd4b1b3c7ef3e
BLAKE2b-256 7f61737836bd4e655a300bffb48e8f9993eba1133eff22deb47795378967f5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e657194a0de3f41c3556b7035d2d8950fceef97bdfc6a1a16830fb70a39616a3
MD5 68e777483a3d5da2ef8e7b8b0bcf1782
BLAKE2b-256 5d5891b15292704640b2c971358a19f9374e420c0a4718267a85dbced8b8d1c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1fc4a3400fd97b6633d98e37a29b6fa9114727b9d4058755b99e79e315e2227
MD5 5ce44325d043c344b84a795c6fa93f49
BLAKE2b-256 c4b6e96148508a1b537db090766ed51f0902485b72554175f8a5696d1bca3415

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 460810de0698f3a22b459124129dcbe7a2c5873fdd80ac65c7f13aebeaaf5b70
MD5 c3ff3b30ff5bda6707316c7a67eb4dc9
BLAKE2b-256 8060062fbf83e75194ddeaab47a290bc458846d05e5e49c16566d7be19165b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f992de669b22d51a164fc65f38c5cd5cef8f5680a3e816ff1504f7a0fdf731d1
MD5 c5e019ac1d1eedfbbc62301a850aa770
BLAKE2b-256 ce9a16bd22129dcabaa4b696791a71140723ed208d4ce2d7c2526454c13d95a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4d66fa2e5fac5d24dfdc48cf5272be13ec821348f386ca864785adafa66ca11e
MD5 32d97b172cebe66fce1378e6a672510a
BLAKE2b-256 ef48d5a424dbbd0b7eb8b44123cc6b46e3645f7d30172847231370ea33ed3400

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ee20c59b7605c8bfead9c92e53c23ea7a1301e095aa438fbb0f7ad49ff4e924
MD5 beba108e7d1252d34f0427f9e9afa9d0
BLAKE2b-256 8e8712f7039473ee792ca8c142f903e767f6b04601218eea406db04fda3a9634

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ef7eba6ef86a1fd7ec6a20b5dd92f6e0f79dd65b550fbfdb3318cf27cf21ee5
MD5 2b1d796a2ad36d9cb60d776c0f15c6f8
BLAKE2b-256 b8b0b90cf7b5e21d8b3115ba36708339a9f6d52e4eacaa24f64d73bcc94c6606

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: publish.yml on couchbase/columnar-python-client

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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