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.1rc1.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.1rc1-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

couchbase_columnar-1.0.1rc1-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.1rc1-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.1rc1-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.1rc1-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

couchbase_columnar-1.0.1rc1-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.1rc1-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.1rc1-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.1rc1-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

couchbase_columnar-1.0.1rc1-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.1rc1-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.1rc1-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.1rc1-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

couchbase_columnar-1.0.1rc1-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.1rc1-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.1rc1-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.1rc1-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

couchbase_columnar-1.0.1rc1-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.1rc1-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.1rc1-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.1rc1-cp39-cp39-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

couchbase_columnar-1.0.1rc1-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.1rc1.tar.gz.

File metadata

  • Download URL: couchbase_columnar-1.0.1rc1.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.1rc1.tar.gz
Algorithm Hash digest
SHA256 fd12324d903c8ddcf71e7f5a6b00ddb03535184747cea398c6ca8a5f8f00996a
MD5 5604763461420c35e20a41d0a2f0f9a7
BLAKE2b-256 7a57fe39a226d70b49e76f5beff8c3dd4107d8534d0a71a43005c518658a7875

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1.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.1rc1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e3be0d53e8a026e5ed85b02910bb14f2424337de2d7d0491781da8330fe87656
MD5 880d55cb71be5bed81ffcd99e58d1581
BLAKE2b-256 f4dc258a2841259ccd3e097ee05b4b69d537b4052bec6ebbbb7e696fa1926323

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1d448780fa3e03e77e92e28694fd8a3dff2e56982e8334d8c2c4a32f283d028
MD5 58c10f2d91062cf23e56c09a906ba5ff
BLAKE2b-256 e3103907d736e96889eb3aecadc4d31639de906abfbd55def156414b47548e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 da6671a3f1a96e5722887ec9dcbb3af815cc2184012f394410db45e41e55221c
MD5 71784649bbbb5bbe017823667259b538
BLAKE2b-256 84466c2376dbcea852b1840b1446505b01aadc26444a830a5e8f2ee1118db436

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4de74be069878f88cd86b9546d90fefd2431f1af4257ceb8d314856f2c80f605
MD5 2d9d045184243f9f605c9b1559618ae8
BLAKE2b-256 b1f1d86a79825e06fc341940102a22b69c0a539f209ada7d2115cce67c4ff408

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f630d7025776c7e4529b2796e1a65c4c8302b93078ebf9625199dd725c1c454b
MD5 71cc56e0c9c968db83cf37120f6ec0ca
BLAKE2b-256 cfa029db72ff923efc57d8b5f13ab2860eb4ed3ed42cbdfc76d124cf510b3f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 197f3e5d6a62a67079cff0e1f0ef89ab226620e068fde9036a2f5fa6d48ee48d
MD5 dc41c4fd8f567f7cb567faada1910a6e
BLAKE2b-256 b905dd0ebdaaa25346b4c9812ae10cb3a6894c22e8ae172993648780e7aaa7d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e558438c14f618e7d502c6d41dc815a74c15090d5700b9cc2482d41f47262d1
MD5 b5e2ca4b31126461977c15c826bd997d
BLAKE2b-256 b4ef02da70a9dd205484445b6c03486afc08ca18dd0119b3addbce368fdd5d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc15a2ad2600b58489a1845aa4a760abea274eb7febcf7802b33e6440c14ffc1
MD5 bb450185aa00a065e1bbd333955e9a0a
BLAKE2b-256 9d7f3cd80b5e66e03083c05a91e9bf39a2f3a81c17d15fdbf796f556b28ccebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7d1ce3745308edae82446983a4be428d25e19caa9fbb096bc5ed2ce94df4323a
MD5 832b36c4cc984bb0d3df98f35f9b4d73
BLAKE2b-256 9f471dc22afd9ab51f4d94e22e7ad20919e7b1ae1aaad46536b98d39daf4eaf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6409b313d8a4e7bddb6eb209fc193dbfbc895f7d0f1a59a386a53a29d92fefad
MD5 95ed76a81575c24dc68c28d10e60ac9a
BLAKE2b-256 68fce418ee7dd5fcba070cb2e477556cd2bd968c07670f3303cd60296fba3609

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e86c71c1796f26cfa62edc2132d0f9b9e0e6a576f78f1e4d9d545303e3983d79
MD5 25052474ce2daa1b20c9efda817a9234
BLAKE2b-256 a87a8e221658802641a41e23a5970d0dcc4cf225941bb68927ab621c11e223aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3becaa0b6d4377c608adcc4b5c2997bb693c892f05b1570c655a1028cc06c116
MD5 4586ce51dfff75bc637bd60083c1f37b
BLAKE2b-256 531fb69e460d0ee2aba790bfd0ac8b19cab764c911ac857bf4abe9d39ee5ae5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae5bdc8d272e15c1a4e2a1f0113e34fcec1f85bb0b4be04440e8051f9849020a
MD5 e6c6bb8e3ab76aa62147c38811ea4b55
BLAKE2b-256 8991f8967aec91fb68c7653ea33bfab8429e32fd6079bf748c106e28f5a6186c

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be285ec642a98643368c1d5cdda5d859539e897f89f7ddb98cd77242db88aec4
MD5 d1e3a9cfdec3bbddec534b188fded933
BLAKE2b-256 5ff6ad7d9d82f892e023d47f371c8830bb51d2cfce56d8d9bd61dd88d7e55094

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5c95c0172147403be1edbccb274900f2431b789b01b1ad159c4324db526ec3f9
MD5 4c919ea63a8b4de8072b91a4a0f39ef1
BLAKE2b-256 e9505949f194aa977d64d08f41f90f04d971edf53d64ac6be2815411369f81b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 77a1de2b04e6d7231b1fec483702253d236d55c323c32bd1d417e43512259af0
MD5 4196e418e35497b7abdaf46d5de85405
BLAKE2b-256 b90ec3d33dc124e31d150bd97d9d7da327744748313ee0c635a10afb7013727b

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 944d762c52c51704cef57b64cd795435488e38443f824f221fbd2392c16264e2
MD5 11ab86f57cb637be3082ee24aef164cf
BLAKE2b-256 66b93ea4584bbe3e422437415331b0c7a5717a72c813a991eddf98194119a2fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b291c2c8514ec7e36b5488e92a1404718f0371f0da16248cd0755f8d6116e31
MD5 da3085e1c1a931e6a00140d2912609e4
BLAKE2b-256 960717b8c74aad7ad28a7e43f671705f473ff74a01ccadf81c207f0ffddb60b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd42606b703af118bc795f9c9163e3f5c7ffe185e21aa988dd1d0973640b0e90
MD5 d224c3217dfd0a8a95b2ab0e0e952226
BLAKE2b-256 1a75978e9d94d7646b83f3902164768fce26f5093c747595f2f8a45f5a873825

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17c8d9265648b981ce70f4c8c37eb4adbe1e8f1fc860390b3df105d78f64ac9b
MD5 bf32f06468b6391eb9f6b7aa2acd3603
BLAKE2b-256 d2eaa794ea733fdfa5a9aca61ba6a6e2f13ba7f60d5ca02b9e8cf676cea4af11

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1e0bbf955df38153f6d968bd61477054ff215115cfaa49079ce233476cb09b0a
MD5 44bb9a0a307dbd5448b35299b5418ab5
BLAKE2b-256 b89f294d8331308e7f2a246b82101919749229cffea8b36c33a1aa6c6014c58a

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 971fbc74e95844e2960cd836496ba9c850a622df3fffa5a8ba13152d7a1c9bcf
MD5 490ab18b621f86e4d0737d601b4b1a78
BLAKE2b-256 027cbc8af60ee8333740d75abc06a73643dc999ae2670b9b0a66fe85442b315f

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ecabbb2b8801f39364b2ed45e3992c7de7b93dd25f510e47c1c6ad3d21beb19
MD5 c0a354256bb41be42bf7751bf81248c0
BLAKE2b-256 cacfebd13a1a173a5e4cf4eee2e21e194a5881f10b258cdc4c9042342146da99

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e4262d44c28d8aef840f15893f3dd9f905fb4adfcb6e5980939826776bd0e8e1
MD5 16ae61f19372e7d96842df3b50b72692
BLAKE2b-256 fdd0622d3a1d19c248e54df87142152a1820a17416212f513fe59ae981a6a421

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 574c659ff8256c2f98569936d2196f2463ce83403ce55cbcc49d92a1bb3b9593
MD5 5f600e436f1b261261fd1bb05eaf33b2
BLAKE2b-256 0fed4fcdafb17ecf91f1ea4d0df16ba73034e70f98172b4fd58d2d1b0af78762

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9f4c91724cc85029fcb8530d91afda5e1f68af68a3947aec8c24e89c88c02af
MD5 d55919ac4dc32d09dacfd9f3b2c25ba0
BLAKE2b-256 b0ee74867752c0991e8b9aedb04675d240f4330104096a5333db4d20518f6bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c1574c94d1a1411a90626a7c6673d9676f139f7a9e3aa78578bc755e75da11d6
MD5 4097f159f9a374a320772d514eb928ff
BLAKE2b-256 38f16d14764d5dfeb5511330feb7c7d5f0c1bc35902118ed4238e4a4f098e65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ea6656994b379b6804066a730687b385d807888f588d2fde8d44f3a7874c4f6c
MD5 42077ce9220cd5dd6f7734dd59e46232
BLAKE2b-256 23026b3aa4183b2cd3338201f0fff4ad96a15da6d90389bddfddc38a2154a96f

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ee8ccf6f279b349368f3c6dbcfaf1a9326973965df52784b12d52ad2c195c05
MD5 b594b045a4f29b6dc74990b53e085e6e
BLAKE2b-256 5daa63d2af37bb13eb6634cda15e5673f897a19b8546d6deac45101171bcff47

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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.1rc1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.1rc1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 906107258a771e7a23bdd04922c0f3e4d48fad9cbee095a5dab309f7d44db651
MD5 de7da397db5070c1c342e77690c7aab5
BLAKE2b-256 be1ba355344eb7718c61e56cc52f30cfc695aa24ebf92c32cd5475b0f7a9ee4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for couchbase_columnar-1.0.1rc1-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