--- sidebar_label: Python title: Connect with Python Connector --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; ## Install Connector First, you need to install the `taospy` module version >= `2.3.3`. Run the command below in your terminal. ``` pip3 install taospy>=2.3.3 ``` You'll need to have Python3 installed. ``` conda install taospy=2.3.3 ``` ## Config Run this command in your terminal to save TDengine cloud token as variables: ```bash export TDENGINE_CLOUD_TOKEN= export TDENGINE_CLOUD_URL= ``` Alternatively, 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 "Connector" and then select "Python". ::: ## Connect Copy code bellow to your editor and run it with `python3` command. ```python import taosrest import os token = os.environ["TDENGINE_CLOUD_TOKEN"] url = os.environ["TDENGINE_ClOUD_URL"] conn = taosrest.connect(url=url, token=token) ``` The client connection is then established. For how to write data and query data, please refer to [sample-program](https://docs.tdengine.com/cloud/connector/python/#sample-program).