Python


Python


This page outlines the steps to use the Python Driver for CData Connect.

Note:CData Connect でPython を設定して使用する前に、データソースをCData Connect アカウントに接続する必要があります。詳細は、Connections を参照してください。

Install the Driver

Follow these steps to download and install the driver:

  1. Open the Client Tools page of CData Connect.

  2. In the Dev Tools section, click Python.

  3. Download and extract the setup archive for your operating system.

Follow the steps below for your operating system.

Windows Installation

  1. In the extracted archive, open the win folder.

  2. Choose the folder for your Python version, and then the folder for your bitness. For example, if you have Python 3.9 and a 64-bit operating system, open the win > Python39 > 64 folder.

  3. Open a command prompt and run pip install for the .whl setup file. For example, a 64-bit Python 3.9 install would be pip install cdata_connect_connector-21.0.8049-cp39-cp39-win_amd64.whl.

Mac and Unix Installation

  1. In the extracted archive, open the mac or unix folder.

  2. Open a Python terminal and run pip install for the appropriate .tar.gz setup file. For example, a Python 3.9 install would be pip install cdata-connect-connector-21.0.8049-python39.tar.gz.

Connect to CData Connect

Follow these steps for an example of how to connect to CData Connect from your Python code:

  1. Import cdata.connect, create a connection object, and and pass the connection string as an argument, as in the example below:
     import cdata.connect as mod
     conn = mod.connect("AuthScheme=OAuth;")
    
  2. If you are not already logged into CData Connect, the OAuth login page opens in your default web browser. Log in to continue.

  3. You can execute SQL statements using this connection. For example, the commands below print all entries for Id in a MailChimp connection:
     cur = conn.execute("SELECT Id FROM MailChimp1.MailChimp.AuthorizedApps")
     rs = cur.fetchall()
     for row in rs:
         print(row)
    

    Connect to a Workspace

You can connect the Python client to a specific workspace as follows:

    import cdata.connect as mod
    conn = mod.connect("AuthScheme=OAuth;Workspace=MyWorkspace")

Learn More

To learn more information about using Python for CData Connect, click here.