--- sidebar_label: Python title: Connect with Python Connector --- ## Install Connector {#install} 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. ## Config {#config} Run this command in your terminal to save your URL and token as variables: ```bash export TDENGINE_CLOUD_URL= export TDENGINE_CLOUD_TOKEN= ``` :::note You should replace above placeholders as real values. To obtain these values, please log in TDengine Cloud and switch to "Connector" section. ::: ## Connect {#connect} ```python import taosrest import os url = os.environ["TDENGINE_CLOUD_URL"] token = os.environ["TDENGINE_CLOUD_TOKEN"] conn = taosrest.connect(url=url, token=token) ``` The client connection is then established.