Google Cloud Bigtable is Google’s NoSQL Big Data database service. It’s the
same database that powers many core Google services, including Search,
Analytics, Maps, and Gmail.
v2.23.0 includes a release of the new BigtableDataClientAsync client, accessible at the import path
google.cloud.bigtable.data.
The new client brings a simplified API and increased performance using asyncio.
The new client is focused on the data API (i.e. reading and writing Bigtable data), with admin operations
remaining exclusively in the existing synchronous client.
NOTE: It is generally not recommended to use the async client in an otherwise synchronous codebase. To make use of asyncio’s
performance benefits, the codebase should be designed to be async from the ground up.
Quick Start
In order to use this library, you first need to go through the following steps:
Install this library in a virtualenv using pip. virtualenv is a tool to
create isolated Python environments. The basic problem it addresses is one of
dependencies and versions, and indirectly permissions.
With virtualenv, it’s possible to install this library without needing system
install permissions, and without clashing with the installed system
dependencies.
Supported Python Versions
Python >= 3.7
Deprecated Python Versions
Python 2.7: the last released version which supported Python 2.7 was
version 1.7.0, released 2021-02-09.
Python 3.5: the last released version which supported Python 3.5 was
version 1.7.0, released 2021-02-09.
Python 3.6: the last released version which supported Python 3.6 was
version v2.10.1, released 2022-06-03.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[],[],null,["Version latestkeyboard_arrow_down\n\n- [2.32.0 (latest)](/python/docs/reference/bigtable/latest)\n- [2.31.0](/python/docs/reference/bigtable/2.31.0)\n- [2.30.1](/python/docs/reference/bigtable/2.30.1)\n- [2.29.0](/python/docs/reference/bigtable/2.29.0)\n- [2.28.1](/python/docs/reference/bigtable/2.28.1)\n- [2.26.0](/python/docs/reference/bigtable/2.26.0)\n- [2.25.0](/python/docs/reference/bigtable/2.25.0)\n- [2.24.0](/python/docs/reference/bigtable/2.24.0)\n- [2.23.1](/python/docs/reference/bigtable/2.23.1)\n- [2.22.0](/python/docs/reference/bigtable/2.22.0)\n- [2.21.0](/python/docs/reference/bigtable/2.21.0)\n- [2.20.0](/python/docs/reference/bigtable/2.20.0)\n- [2.19.0](/python/docs/reference/bigtable/2.19.0)\n- [2.18.1](/python/docs/reference/bigtable/2.18.1)\n- [2.17.0](/python/docs/reference/bigtable/2.17.0)\n- [2.16.0](/python/docs/reference/bigtable/2.16.0)\n- [2.15.0](/python/docs/reference/bigtable/2.15.0)\n- [2.14.1](/python/docs/reference/bigtable/2.14.1)\n- [2.13.2](/python/docs/reference/bigtable/2.13.2)\n- [2.12.0](/python/docs/reference/bigtable/2.12.0)\n- [2.11.3](/python/docs/reference/bigtable/2.11.3)\n- [2.10.1](/python/docs/reference/bigtable/2.10.1)\n- [2.9.0](/python/docs/reference/bigtable/2.9.0)\n- [2.8.1](/python/docs/reference/bigtable/2.8.1)\n- [2.7.1](/python/docs/reference/bigtable/2.7.1)\n- [2.6.0](/python/docs/reference/bigtable/2.6.0)\n- [2.5.2](/python/docs/reference/bigtable/2.5.2)\n- [2.4.0](/python/docs/reference/bigtable/2.4.0)\n- [2.3.3](/python/docs/reference/bigtable/2.3.3)\n- [2.2.0](/python/docs/reference/bigtable/2.2.0)\n- [2.1.0](/python/docs/reference/bigtable/2.1.0)\n- [2.0.0](/python/docs/reference/bigtable/2.0.0)\n- [1.7.3](/python/docs/reference/bigtable/1.7.3)\n- [1.6.1](/python/docs/reference/bigtable/1.6.1)\n- [1.5.1](/python/docs/reference/bigtable/1.5.1)\n- [1.4.0](/python/docs/reference/bigtable/1.4.0)\n- [1.3.0](/python/docs/reference/bigtable/1.3.0)\n- [1.2.1](/python/docs/reference/bigtable/1.2.1)\n- [1.1.0](/python/docs/reference/bigtable/1.1.0)\n- [1.0.0](/python/docs/reference/bigtable/1.0.0)\n- [0.34.0](/python/docs/reference/bigtable/0.34.0) \n\nPython Client for Google Cloud Bigtable\n=======================================\n\n[](https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability) [](https://pypi.org/project/google-cloud-bigtable/) [](https://pypi.org/project/google-cloud-bigtable/)\n\n[Google Cloud Bigtable](https://cloud.google.com/bigtable) is Google's NoSQL Big Data database service. It's the\nsame database that powers many core Google services, including Search,\nAnalytics, Maps, and Gmail.\n\n- [Client Library Documentation](https://googleapis.dev/python/bigtable/latest)\n\n- [Product Documentation](https://cloud.google.com/bigtable/docs)\n\nAsync Data Client\n-----------------\n\n`v2.23.0` includes a release of the new `BigtableDataClientAsync` client, accessible at the import path\n`google.cloud.bigtable.data`.\n\nThe new client brings a simplified API and increased performance using asyncio.\nThe new client is focused on the data API (i.e. reading and writing Bigtable data), with admin operations\nremaining exclusively in the existing synchronous client.\n\nFeedback and bug reports are welcome at [cbt-python-client-v3-feedback@google.com](mailto:cbt-python-client-v3-feedback@google.com),\nor through the Github [issue tracker](https://github.com/googleapis/python-bigtable/issues).\n\u003e **NOTE**: It is generally not recommended to use the async client in an otherwise synchronous codebase. To make use of asyncio's\n\u003e performance benefits, the codebase should be designed to be async from the ground up.\n\nQuick Start\n-----------\n\nIn order to use this library, you first need to go through the following steps:\n\n1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)\n\n2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)\n\n3. [Enable the Cloud Bigtable API.](https://cloud.google.com/bigtable)\n\n4. [Setup Authentication.](https://googleapis.dev/python/google-api-core/latest/auth.html)\n\n### Installation\n\nInstall this library in a [virtualenv](https://virtualenv.pypa.io/en/latest/) using pip. [virtualenv](https://virtualenv.pypa.io/en/latest/) is a tool to\ncreate isolated Python environments. The basic problem it addresses is one of\ndependencies and versions, and indirectly permissions.\n\nWith [virtualenv](https://virtualenv.pypa.io/en/latest/), it's possible to install this library without needing system\ninstall permissions, and without clashing with the installed system\ndependencies.\n\n#### Supported Python Versions\n\nPython \\\u003e= 3.7\n\n#### Deprecated Python Versions\n\n- Python 2.7: the last released version which supported Python 2.7 was\n version 1.7.0, released 2021-02-09.\n\n- Python 3.5: the last released version which supported Python 3.5 was\n version 1.7.0, released 2021-02-09.\n\n- Python 3.6: the last released version which supported Python 3.6 was\n version v2.10.1, released 2022-06-03.\n\n#### Mac/Linux\n\n pip install virtualenv\n virtualenv \u003cyour-env\u003e\n source \u003cyour-env\u003e/bin/activate\n \u003cyour-env\u003e/bin/pip install google-cloud-bigtable\n\n#### Windows\n\n pip install virtualenv\n virtualenv \u003cyour-env\u003e\n \u003cyour-env\u003e\\Scripts\\activate\n \u003cyour-env\u003e\\Scripts\\pip.exe install google-cloud-bigtable\n\n### Next Steps\n\n- Read the [Client Library Documentation](https://googleapis.dev/python/bigtable/latest) for Cloud Bigtable API\n to see other available methods on the client.\n\n- Read the [Product documentation](https://cloud.google.com/bigtable/docs) to learn\n more about the product and see How-to Guides."]]