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.0.dev3.tar.gz (6.1 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.0.dev3-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

couchbase_columnar-1.0.0.dev3-cp312-cp312-musllinux_1_1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_10_15_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

couchbase_columnar-1.0.0.dev3-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

couchbase_columnar-1.0.0.dev3-cp311-cp311-musllinux_1_1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_10_15_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

couchbase_columnar-1.0.0.dev3-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

couchbase_columnar-1.0.0.dev3-cp310-cp310-musllinux_1_1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_10_15_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

couchbase_columnar-1.0.0.dev3-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

couchbase_columnar-1.0.0.dev3-cp39-cp39-musllinux_1_1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_10_15_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

couchbase_columnar-1.0.0.dev3-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

couchbase_columnar-1.0.0.dev3-cp38-cp38-musllinux_1_1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_10_15_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file couchbase_columnar-1.0.0.dev3.tar.gz.

File metadata

  • Download URL: couchbase_columnar-1.0.0.dev3.tar.gz
  • Upload date:
  • Size: 6.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for couchbase_columnar-1.0.0.dev3.tar.gz
Algorithm Hash digest
SHA256 0aa6948baeb09bdb17edddd70c005ed230991c95fc9c5a184fd9df5c22867026
MD5 99c9fae359ead944c091f08a046002cd
BLAKE2b-256 e01494b6b13ae22df1de9a5ce664f22a90a88c24a3d1b18670a2905bce9a5435

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4018f2b9f8fbdaaba79fe36d57f927fc3ebfd9c1511307a47f66d3bc5024c228
MD5 e5f39a11ca719a726070e70e141a4369
BLAKE2b-256 ac70608bfa61d722c05a12934b31d9c7dadcc30137f638f65c3e89deb4546ab1

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae9597b0f44a32c26662c2acf0b24553b1f0ba76c9c62555914dab1661055255
MD5 f045d3aca7e87c5dfc33441e8bbb7bf4
BLAKE2b-256 e2731cbeac146a72f84c7a9a6ee88a49eef9c496a58a37cca56d28f3f98a4a08

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b8d717052cba73f9c895288ac27addb0e522e4ad32c024a1b40276ebe052022c
MD5 1fdc4ddff6e79c356b0a934dd37b4d34
BLAKE2b-256 26513989a7c7f7facf4c59fb806e782748ef56a20c884ddca35c7e7e6323a8cc

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f59e87d5b27af0340f4660514eaa6d89c7c8cd8f10b993292b1cacbb7602f945
MD5 3006eb0070358e95a53cb958e9c47659
BLAKE2b-256 2c098f57a50e2e541379420297ecd211e26e6d25e52ee3554f6a5a265058986a

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7422c7feaf5f1cba7d8da2770b095fc9483f51866b344b7d3a9459acc2bc85f9
MD5 40780d3b7ee39d3f640d176a750023b5
BLAKE2b-256 a3f0175136825126d4cf0f8c3210f5a72ad80b70caa4d0537b9e5a63f2cee554

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e50dd92920bcaaae70ab43a255f38b068943cb84c3f26afd165b14101b6947bf
MD5 7f6c4425cae005d6096af4c223b12cdc
BLAKE2b-256 ec4146407e1dc75e5d6e94823959a8e38517fa1dd7683869f61182a90e6d5e01

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 184a4fbe75b44e740db1b88efd5518c102b9fda2c383d9564979ae8725a6eca5
MD5 3cb4705ad5d29dfe14669de1828e4887
BLAKE2b-256 125f1605b03c031850f4a3e863e542d26ec936cde0204bbeddab518b212a707e

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1302c8ff07fd3a50263304cbe403fd472c3640c589762aad09c6a584e8ed6bfc
MD5 d9f5c6316ce15e3116a1f30a9dcc4637
BLAKE2b-256 b9387baeb8e5ceaf919cf6f2724c62f97babbca91792289f892111d3a351f81e

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 61e7377e9a135250914ed2812cc18e6f162e5f93872c36b29dc68bb50adc8f64
MD5 6565c84658fa1727479dfeb2a6c0450c
BLAKE2b-256 7ad5e5ace6f7e5b2d61dba13cabf58121051597a203811d22041f321f2fc60f4

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3bc80c842a63e8ede8bc0f05a2b753ef8a23fdcfc15a3091ee1d79b5e1addd15
MD5 0703bec36134ce392ec3ddde45cb9f7c
BLAKE2b-256 dc5e5ab684aabf28e96ae7a990f6dfe497f916f7e40ef9e5fd0c67bb1df18c24

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de04decfe21130a5b7a69b8578a8a8b773015b15506b944969223e3589182481
MD5 18778fe11ad6ee6a6d858a37d46593fe
BLAKE2b-256 cdb7d18fefa07e5d2591843dad999743ab41f9d99f150610fb6497bcddc74fa6

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21440c655b4e974897974df2b96c30688d747ca96b60975882449333d741d3cc
MD5 000a29ff88a6cc3183422d7d9c26ed76
BLAKE2b-256 c80010efcb62b88bf8514e930e1f1c54ca720033d2e91206a7de154437070928

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0adc7345202679a36cd5be5e602d686ef1102ee9a7547c310f6260d3d419d48
MD5 6ddd50a9925720cb3c3b52db29e0de39
BLAKE2b-256 00982b44b5997ae957fd89b269dd266c379f90000cc994733a6cabc2ca21e5f3

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 732bfb35126bece98281af1f2c909f21a42995ad2ad7d52212ad3922ba3627bd
MD5 31048b978b7f34c52504d1c91a1de533
BLAKE2b-256 bbdc9aaeec73152c7b7717b4db8ffbb333ff909cae8fac5724427ec1d02a6ab8

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1409e0b2b4d52ff2c945f746f65e8883fd650541dffa6006942d961f5fefeefe
MD5 875902d59ee15df1c4beb47e5d4c4f05
BLAKE2b-256 245c38c218f22222b6c04b9b0d898c2bed98d960194eb458fb61fea9d3cac9fb

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 377d1bdc1ce7bc72aef778e4d515093a766d9a43604fc252b32bf1e8f60a66c8
MD5 077719eb7d0c34376083d9c5ffc9bea7
BLAKE2b-256 4faf1021be10eaa0585bb806270768c854ce28c6b15aab3ed8c8f48d5a099fd6

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edbc9452d6fc416abee4fe012c1c67f723a57d7c832ad0c073a6a0f708f12c27
MD5 890b8242cc53cf82cde2c181fb0a1a71
BLAKE2b-256 52d6c4c30a807d921faa2904c1c6be74a3c10f21534fea6462b021b8780c517f

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ffa3b04bca64e5c5568548df3ab03e1136c296e310a7c39d0a15f19ecf5c9680
MD5 321307d1237e164474925581102bf17b
BLAKE2b-256 76d2050b7a66cafbb0176aedfa8e652c58184281b76e1eabdb68db96c5d53edf

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9eb7fd366ebde7f94241dc1c935bb2c13fdee8544568a98abe62a70485baeecf
MD5 9e2dd9e0ed6b7eb3294983a210ee288b
BLAKE2b-256 bf62db9a508e1acfeadeaace346300b7fcf1537cabdb9c22edad19ff5773c01e

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1be2d3a39b87ca152209c2904270bd9be687d6d6b5ed2f1d0cf9d4b37cb2b6e
MD5 7c0b9aed45fac966ff0ddbc71730cc7f
BLAKE2b-256 7d28143e65b95dc82a0a4f5a4e27d1d65a1dc7edf654e12580006b309f8d34cc

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0ac69230339f4861066a01f4c4a9ea100c3d96905d12abec9a2fe528f69dc79f
MD5 2b087ad97cd97944c112cd4c0536c1ae
BLAKE2b-256 70353bb14a58e77fc7072392d3673c6a835dd651dea06cb9d21549532405d966

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7613f712668890994bbed2d8b43c0fff77cd63238cb32bf57a51496e19c4623b
MD5 6b00a18f41148eba2a58bfe02868464c
BLAKE2b-256 78e3e6c27dd20e5d840644369c55da21716e3ea5b114a3fdbd222321246044ae

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0cc6215ba65c9b5ce0af7435300e901db4cba935489b38fd83ca77bb494a177
MD5 338440285686ee3e12703aeec270b47c
BLAKE2b-256 c291487bbafbdcb8f9293a98e6c0f122c3ef681294e6550446360cbd8f5d2cd9

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b30577d58ead9b39349935ec0bb013e8791400088bc739c47f493c711555091
MD5 e7f9a944446fa91d4b4c31d7fc469dc5
BLAKE2b-256 85203b07ea9eb678cb16a28205e1dfa94786af7f5b6d1bd0934faf3ccb55cfb4

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 eb0cb56194ed28c50e1af39d778a67cdbcd42f8a2f9e03f6d0dc723135418695
MD5 eaf78fe92572abd215c01bf04cc84df3
BLAKE2b-256 13014eda1ba8f6cd507300c6cd2f9de32afef22c2707f28feb8d481173c3c252

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f4e55e6438426c943c821f59548e2bdf2288a23e73648e0a996e25f1810399a
MD5 723e071d5acc6c593448a3391ad9bc78
BLAKE2b-256 02582bc8d6b3ab298146f427956fdcca7d15a9fb532ba8b23801f3a0ab2875c0

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f4d36420da7772dfc22512bbbbb0f2ec2ef2c744998f289c614d35b3d84f1388
MD5 659c259eb3c03ac94401e1c4b53c09ba
BLAKE2b-256 cd08a859d01a27e4183d61167ccf2e5e60807b1dfe02bcdbf78ecef5c4c074e3

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b48960a4332bb1245386d8fdf99ccd23fb8ada581d5e299b46811a4309ca4832
MD5 cc7c3aac714a2f4566a9371ad8703cbb
BLAKE2b-256 162df38a6fb2ee2e25e233810c8d663127256bb9d39a19a69ca6ba1c96a2b467

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d1be8324dad210d456a1394291a425f403215d8d59761a4d51fab2143ace1e1
MD5 5946124487f6974e3dc448e2ed7bef77
BLAKE2b-256 634b2c8bcf60aba57dd5e1d7fa4aa9a876b0c83cfbb7ef7548b6b4b9e0a73904

See more details on using hashes here.

File details

Details for the file couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for couchbase_columnar-1.0.0.dev3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 880740b155b7f167bcda4875d032947c095044a903ca1e209822f254f356c615
MD5 0370067bf1980302b5def62224b09e06
BLAKE2b-256 dfb50ec1e1e16f6da6b3f82030681f5d1c32d78ba112aa8ab2a360913df8b51b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page