--- sidebar_label: Python title: Connect with Python Connector description: Connect to TDengine cloud service using Python connector --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; ## Install Connector First, you need to install the `taospy` module version >= `2.6.2`. Run the command below in your terminal. ``` pip3 install -U taospy ``` You'll need to have Python3 installed. ``` conda install -c conda-forge taospy ``` ## Config Run this command in your terminal to save TDengine cloud token and URL as variables: ```bash export TDENGINE_CLOUD_TOKEN="" export TDENGINE_CLOUD_URL="" ``` ```shell set TDENGINE_CLOUD_TOKEN= set TDENGINE_CLOUD_URL= ``` ```powershell $env:TDENGINE_CLOUD_TOKEN='' $env:TDENGINE_CLOUD_URL='' ``` Alternatively, you can also set environment variables in your IDE's run configurations. :::note Replace and with cloud token and URL. To obtain the value of cloud token and URL, please log in [TDengine Cloud](https://cloud.tdengine.com) and click "Programming" on the left menu, then select "Python". ::: ## Connect Copy code bellow to your editor, then run it. If you are using jupyter, assuming you have followed the guide about Jupyter, you can copy the code into Jupyter editor in your browser. ```python {{#include docs/examples/python/develop_tutorial.py:connect}} ``` ```python {{#include docs/examples/python/develop_tutorial_ws.py:connect}} ``` For how to write data and query data, please refer to [Data In](https://docs.tdengine.com/cloud/data-in/) and [Data Out](https://docs.tdengine.com/cloud/data-out/). For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). ## Jupyter ### Step 1: Install For the users who are familiar with Jupyter to program in Python, both TDengine Python connector and Jupyter need to be ready in your environment. If you have not done yet, please use the commands below to install them. ```bash pip install jupyterlab pip3 install -U taospy ``` You'll need to have Python3 installed. ``` conda install -c conda-forge jupyterlab conda install -c conda-forge taospy ``` ### Step 2: Configure In order for Jupyter to connect to TDengine cloud service, before launching Jupyter, the environment setting must be performed. We use Linux bash as example. ```bash export TDENGINE_CLOUD_TOKEN="" export TDENGINE_CLOUD_URL="" jupyter lab ``` ### Step 3: Connect Once jupyter lab is launched, Jupyter lab service is automatically connected and shown in your browser. You can create a new notebook and copy the sample code below and run it. ```python {{#include docs/examples/python/develop_tutorial.py:connect}} ```