teradatasql


Nameteradatasql JSON
Version 20.0.0.34 PyPI version JSON
download
home_pagehttp://www.teradata.com/
SummaryTeradata SQL Driver for Python
upload_time2025-08-06 15:32:46
maintainerNone
docs_urlNone
authorTeradata Corporation
requires_python>=3.7
licenseTeradata License Agreement
keywords teradata
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Teradata SQL Driver for Python

This package enables Python applications to connect to the Teradata Database.

This package implements the [PEP-249 Python Database API Specification 2.0](https://www.python.org/dev/peps/pep-0249/).

This package requires 64-bit Python 3.7 or later and runs on the following operating systems and processor architectures. 32-bit Python is not supported.
* Windows x64 on 64-bit Intel and AMD processors
* macOS on 64-bit ARM processors
* macOS on 64-bit Intel processors
* Linux x64 on 64-bit Intel and AMD processors
* Linux ARM64 on 64-bit ARM processors
* Linux ppc64le on 64-bit Power processors

For community support, please visit [Teradata Community](https://support.teradata.com/community).

For Teradata customer support, please visit [Teradata Customer Service](https://support.teradata.com/).

Please note, this driver may contain beta/preview features ("Beta Features"). As such, by downloading and/or using the driver, in addition to agreeing to the licensing terms below, you acknowledge that the Beta Features are experimental in nature and that the Beta Features are provided "AS IS" and may not be functional on any machine or in any environment.

Copyright 2025 Teradata. All Rights Reserved.

### Table of Contents

* [Installation](#Installation)
* [License](#License)
* [Documentation](#Documentation)

<a id="Installation"></a>

### Installation

The `teradatasql` package depends on the `pycryptodome` package which is available from PyPI.

Use `pip install` to download and install the driver and its dependencies automatically.

Platform       | Command
-------------- | ---
macOS or Linux | `pip install teradatasql`
Windows        | `py -3 -m pip install teradatasql`

When upgrading to a new version of the driver, you may need to use pip install's `--no-cache-dir` option to force the download of the new version.

Platform       | Command
-------------- | ---
macOS or Linux | `pip install --no-cache-dir -U teradatasql`
Windows        | `py -3 -m pip install --no-cache-dir -U teradatasql`

The `teradatasql` package depends on the `pycryptodome` package, because one of the included sample programs (`TJEncryptPassword.py`) uses `pycryptodome`. The driver itself does not use `pycryptodome`.

If you want to avoid installing `pycryptodome`, you can use the `--no-deps` option of pip install to avoid installing `pycryptodome`. Without `pycryptodome`, you will not be able to run the `TJEncryptPassword.py` sample program.

Platform       | Command
-------------- | ---
macOS or Linux | `pip install --no-deps teradatasql`
Windows        | `py -3 -m pip install --no-deps teradatasql`

<a id="License"></a>

### License

Use of the driver is governed by the [License Agreement for the Teradata SQL Driver for Python](https://github.com/Teradata/python-driver/blob/master/LICENSE).

When the driver is installed, the `LICENSE` and `THIRDPARTYLICENSE` files are placed in the `teradatasql` directory under your Python installation directory.

In addition to the license terms, the driver may contain beta/preview features ("Beta Features"). As such, by downloading and/or using the driver, in addition to the licensing terms, you acknowledge that the Beta Features are experimental in nature and that the Beta Features are provided "AS IS" and may not be functional on any machine or in any environment.

<a id="Documentation"></a>

### Documentation

Documentation and sample programs are [available from Teradata on github.com](https://github.com/Teradata/python-driver).

When the driver is installed, the `README.md` file is placed in the `teradatasql` directory under your Python installation directory. This permits you to view the documentation offline, when you are not connected to the Internet.

The `README.md` file is a plain text file containing the documentation for the driver. While the file can be viewed with any text file viewer or editor, your viewing experience will be best with an editor that understands Markdown format.



            

Raw data

            {
    "_id": null,
    "home_page": "http://www.teradata.com/",
    "name": "teradatasql",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "Teradata",
    "author": "Teradata Corporation",
    "author_email": "teradatasql@teradata.com",
    "download_url": null,
    "platform": "Windows",
    "description": "## Teradata SQL Driver for Python\n\nThis package enables Python applications to connect to the Teradata Database.\n\nThis package implements the [PEP-249 Python Database API Specification 2.0](https://www.python.org/dev/peps/pep-0249/).\n\nThis package requires 64-bit Python 3.7 or later and runs on the following operating systems and processor architectures. 32-bit Python is not supported.\n* Windows x64 on 64-bit Intel and AMD processors\n* macOS on 64-bit ARM processors\n* macOS on 64-bit Intel processors\n* Linux x64 on 64-bit Intel and AMD processors\n* Linux ARM64 on 64-bit ARM processors\n* Linux ppc64le on 64-bit Power processors\n\nFor community support, please visit [Teradata Community](https://support.teradata.com/community).\n\nFor Teradata customer support, please visit [Teradata Customer Service](https://support.teradata.com/).\n\nPlease note, this driver may contain beta/preview features (\"Beta Features\"). As such, by downloading and/or using the driver, in addition to agreeing to the licensing terms below, you acknowledge that the Beta Features are experimental in nature and that the Beta Features are provided \"AS IS\" and may not be functional on any machine or in any environment.\n\nCopyright 2025 Teradata. All Rights Reserved.\n\n### Table of Contents\n\n* [Installation](#Installation)\n* [License](#License)\n* [Documentation](#Documentation)\n\n<a id=\"Installation\"></a>\n\n### Installation\n\nThe `teradatasql` package depends on the `pycryptodome` package which is available from PyPI.\n\nUse `pip install` to download and install the driver and its dependencies automatically.\n\nPlatform       | Command\n-------------- | ---\nmacOS or Linux | `pip install teradatasql`\nWindows        | `py -3 -m pip install teradatasql`\n\nWhen upgrading to a new version of the driver, you may need to use pip install's `--no-cache-dir` option to force the download of the new version.\n\nPlatform       | Command\n-------------- | ---\nmacOS or Linux | `pip install --no-cache-dir -U teradatasql`\nWindows        | `py -3 -m pip install --no-cache-dir -U teradatasql`\n\nThe `teradatasql` package depends on the `pycryptodome` package, because one of the included sample programs (`TJEncryptPassword.py`) uses `pycryptodome`. The driver itself does not use `pycryptodome`.\n\nIf you want to avoid installing `pycryptodome`, you can use the `--no-deps` option of pip install to avoid installing `pycryptodome`. Without `pycryptodome`, you will not be able to run the `TJEncryptPassword.py` sample program.\n\nPlatform       | Command\n-------------- | ---\nmacOS or Linux | `pip install --no-deps teradatasql`\nWindows        | `py -3 -m pip install --no-deps teradatasql`\n\n<a id=\"License\"></a>\n\n### License\n\nUse of the driver is governed by the [License Agreement for the Teradata SQL Driver for Python](https://github.com/Teradata/python-driver/blob/master/LICENSE).\n\nWhen the driver is installed, the `LICENSE` and `THIRDPARTYLICENSE` files are placed in the `teradatasql` directory under your Python installation directory.\n\nIn addition to the license terms, the driver may contain beta/preview features (\"Beta Features\"). As such, by downloading and/or using the driver, in addition to the licensing terms, you acknowledge that the Beta Features are experimental in nature and that the Beta Features are provided \"AS IS\" and may not be functional on any machine or in any environment.\n\n<a id=\"Documentation\"></a>\n\n### Documentation\n\nDocumentation and sample programs are [available from Teradata on github.com](https://github.com/Teradata/python-driver).\n\nWhen the driver is installed, the `README.md` file is placed in the `teradatasql` directory under your Python installation directory. This permits you to view the documentation offline, when you are not connected to the Internet.\n\nThe `README.md` file is a plain text file containing the documentation for the driver. While the file can be viewed with any text file viewer or editor, your viewing experience will be best with an editor that understands Markdown format.\n\n\n",
    "bugtrack_url": null,
    "license": "Teradata License Agreement",
    "summary": "Teradata SQL Driver for Python",
    "version": "20.0.0.34",
    "project_urls": {
        "Homepage": "http://www.teradata.com/"
    },
    "split_keywords": [
        "teradata"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f76dbc575b0d61d12102d1fe9e1df0084d8d22b51149ade4e3458028738855e",
                "md5": "0a1c6aac3c3b484f3b7799de4b88d382",
                "sha256": "908784337b61d8ecf9f9dc74be6d9a72ddbd7046db45f2e7389b3a8aec461717"
            },
            "downloads": -1,
            "filename": "teradatasql-20.0.0.34-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0a1c6aac3c3b484f3b7799de4b88d382",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 29205860,
            "upload_time": "2025-08-06T15:32:46",
            "upload_time_iso_8601": "2025-08-06T15:32:46.684885Z",
            "url": "https://files.pythonhosted.org/packages/8f/76/dbc575b0d61d12102d1fe9e1df0084d8d22b51149ade4e3458028738855e/teradatasql-20.0.0.34-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-06 15:32:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "teradatasql"
}
        
Elapsed time: 1.73072s