{
"info": {
"author": "Teradata Corporation",
"author_email": "teradatasql@teradata.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"License :: Other/Proprietary License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Database :: Front-Ends"
],
"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.4 or later, and runs on Windows, macOS, and Linux. 32-bit Python is not supported.\n\nFor community support, please visit the [Teradata Community forums](https://community.teradata.com/).\n\nFor Teradata customer support, please visit [Teradata Access](https://access.teradata.com/).\n\nCopyright 2019 Teradata. All Rights Reserved.\n\n### Table of Contents\n\n* [Features](#Features)\n* [Limitations](#Limitations)\n* [Installation](#Installation)\n* [License](#License)\n* [Documentation](#Documentation)\n* [Sample Programs](#SamplePrograms)\n* [Using the Teradata SQL Driver for Python](#Using)\n* [Connection Parameters](#ConnectionParameters)\n* [COP Discovery](#COPDiscovery)\n* [Stored Password Protection](#StoredPasswordProtection)\n* [Transaction Mode](#TransactionMode)\n* [Auto-Commit](#AutoCommit)\n* [Data Types](#DataTypes)\n* [Null Values](#NullValues)\n* [Character Export Width](#CharacterExportWidth)\n* [Module Constructors](#ModuleConstructors)\n* [Module Globals](#ModuleGlobals)\n* [Module Exceptions](#ModuleExceptions)\n* [Connection Methods](#ConnectionMethods)\n* [Cursor Attributes](#CursorAttributes)\n* [Cursor Methods](#CursorMethods)\n* [Type Objects](#TypeObjects)\n* [Escape Syntax](#EscapeSyntax)\n* [FastLoad](#FastLoad)\n* [Change Log](#ChangeLog)\n\nTable of Contents links do not work on PyPI due to a [PyPI limitation](https://github.com/pypa/warehouse/issues/4064).\n\n\n\n### Features\n\nThe *Teradata SQL Driver for Python* is a DBAPI Driver that enables Python applications to connect to the Teradata Database. The Teradata SQL Driver for Python implements the [PEP-249 Python Database API Specification 2.0](https://www.python.org/dev/peps/pep-0249/).\n\nThe Teradata SQL Driver for Python is a young product that offers a basic feature set. We are working diligently to add features to the Teradata SQL Driver for Python, and our goal is feature parity with the Teradata JDBC Driver.\n\nAt the present time, the Teradata SQL Driver for Python offers the following features.\n\n* Supported for use with Teradata Database 14.10 and later releases. Informally tested to work with Teradata Database 12.0 and later releases.\n* COP Discovery.\n* Encrypted logon using the `TD2`, `JWT`, `LDAP`, `KRB5` (Kerberos), or `TDNEGO` logon mechanisms.\n* Data encryption enabled via the `encryptdata` connection parameter.\n* Unicode character data transferred via the UTF8 session character set.\n* Auto-commit for ANSI and TERA transaction modes.\n* 1 MB rows supported with Teradata Database 16.0 and later.\n* Multi-statement requests that return multiple result sets.\n* Most JDBC escape syntax.\n* Parameterized SQL requests with question-mark parameter markers.\n* Parameterized batch SQL requests with multiple rows of data bound to question-mark parameter markers.\n* ElicitFile protocol support for DDL commands that create external UDFs or stored procedures and upload a file from client to database.\n* `CREATE PROCEDURE` and `REPLACE PROCEDURE` commands.\n* Stored Procedure Dynamic Result Sets.\n\n\n\n### Limitations\n\n* The UTF8 session character set is always used. The `charset` connection parameter is not supported.\n* The following complex data types are not supported yet: `XML`, `JSON`, `DATASET STORAGE FORMAT AVRO`, and `DATASET STORAGE FORMAT CSV`.\n* No support yet for data encryption that is governed by central administration. To enable data encryption, you must specify a `true` value for the `encryptdata` connection parameter.\n* Laddered Concurrent Connect is not supported yet.\n* No support yet for Recoverable Network Protocol and Redrive.\n* FastExport is not available yet.\n* Monitor partition support is not available yet.\n\n\n\n### Installation\n\nUse pip to install the Teradata SQL Driver for Python.\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 Teradata SQL Driver for Python, 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\n\n\n### License\n\nUse of the Teradata SQL Driver for Python is governed by the *License Agreement for the Teradata SQL Driver for Python*.\n\nWhen the Teradata SQL Driver for Python is installed, the `LICENSE` and `THIRDPARTYLICENSE` files are placed in the `teradatasql` directory under your Python installation directory.\n\n\n\n### Documentation\n\nWhen the Teradata SQL Driver for Python 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 Teradata SQL Driver for Python. 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\n### Sample Programs\n\nSample programs are provided to demonstrate how to use the Teradata SQL Driver for Python. When the Teradata SQL Driver for Python is installed, the sample programs are placed in the `teradatasql/samples` directory under your Python installation directory.\n\nThe sample programs are coded with a fake Teradata Database hostname `whomooz`, username `guest`, and password `please`. Substitute your actual Teradata Database hostname and credentials before running a sample program.\n\nProgram | Purpose\n------------------------------------------------------------------------------------------------------------------- | ---\n[BatchInsert.py](https://github.com/Teradata/python-driver/blob/master/samples/BatchInsert.py) | Demonstrates how to insert a batch of rows\n[BatchInsPerf.py](https://github.com/Teradata/python-driver/blob/master/samples/BatchInsPerf.py) | Measures time to insert one million rows\n[CharPadding.py](https://github.com/Teradata/python-driver/blob/master/samples/CharPadding.py) | Demonstrates the Teradata Database's _Character Export Width_ behavior\n[CommitRollback.py](https://github.com/Teradata/python-driver/blob/master/samples/CommitRollback.py) | Demonstrates commit and rollback methods with auto-commit off.\n[DriverDatabaseVersion.py](https://github.com/Teradata/python-driver/blob/master/samples/DriverDatabaseVersion.py) | Displays the Teradata SQL Driver version and Teradata Database version\n[ElicitFile.py](https://github.com/Teradata/python-driver/blob/master/samples/ElicitFile.py) | Demonstrates C source file upload to create a User-Defined Function (UDF)\n[FakeResultSetCon.py](https://github.com/Teradata/python-driver/blob/master/samples/FakeResultSetCon.py) | Demonstrates connection parameter for fake result sets\n[FakeResultSetEsc.py](https://github.com/Teradata/python-driver/blob/master/samples/FakeResultSetEsc.py) | Demonstrates escape function for fake result sets\n[FastLoadBatch.py](https://github.com/Teradata/python-driver/blob/master/samples/FastLoadBatch.py) | Demonstrates how to FastLoad batches of rows\n[HelpSession.py](https://github.com/Teradata/python-driver/blob/master/samples/HelpSession.py) | Displays session information\n[LoadCSVFile.py](https://github.com/Teradata/python-driver/blob/master/samples/LoadCSVFile.py) | Demonstrates how to load data from a CSV file into a table\n[MetadataFromPrepare.py](https://github.com/Teradata/python-driver/blob/master/samples/MetadataFromPrepare.py) | Demonstrates how to prepare a SQL request and obtain SQL statement metadata\n[StoredProc.py](https://github.com/Teradata/python-driver/blob/master/samples/StoredProc.py) | Demonstrates how to create and call a SQL stored procedure\n[TJEncryptPassword.py](https://github.com/Teradata/python-driver/blob/master/samples/TJEncryptPassword.py) | Creates encrypted password files\n\n\n\n### Using the Teradata SQL Driver for Python\n\nYour Python script must import the `teradatasql` package in order to use the Teradata SQL Driver for Python.\n\n import teradatasql\n\nAfter importing the `teradatasql` package, your Python script calls the `teradatasql.connect` function to open a connection to the Teradata Database.\n\nYou may specify connection parameters as a JSON string, as `kwargs`, or using a combination of the two approaches. The `teradatasql.connect` function's first argument is an optional JSON string. The `teradatasql.connect` function's second and subsequent arguments are optional `kwargs`.\n\nConnection parameters specified only as `kwargs`:\n\n con = teradatasql.connect(host=\"whomooz\", user=\"guest\", password=\"please\")\n\nConnection parameters specified only as a JSON string:\n\n con = teradatasql.connect('{\"host\":\"whomooz\",\"user\":\"guest\",\"password\":\"please\"}')\n\nConnection parameters specified using a combination:\n\n con = teradatasql.connect('{\"host\":\"whomooz\"}', user=\"guest\", password=\"please\")\n\nWhen a combination of parameters are specified, connection parameters specified as `kwargs` take precedence over same-named connection parameters specified in the JSON string.\n\n\n\n### Connection Parameters\n\nThe following table lists the connection parameters currently offered by the Teradata SQL Driver for Python.\n\nOur goal is consistency for the connection parameters offered by the Teradata SQL Driver for Python and the Teradata JDBC Driver, with respect to connection parameter names and functionality. For comparison, Teradata JDBC Driver connection parameters are [documented here](http://developer.teradata.com/doc/connectivity/jdbc/reference/current/jdbcug_chapter_2.html#BGBHDDGB).\n\nParameter | Default | Type | Description\n------------------ | ----------- | -------------- | ---\n`account` | | string | Specifies the Teradata Database account. Equivalent to the Teradata JDBC Driver `ACCOUNT` connection parameter.\n`column_name` | `\"false\"` | quoted boolean | Controls the behavior of cursor `.description` sequence `name` items. Equivalent to the Teradata JDBC Driver `COLUMN_NAME` connection parameter. False specifies that a cursor `.description` sequence `name` item provides the AS-clause name if available, or the column name if available, or the column title. True specifies that a cursor `.description` sequence `name` item provides the column name if available, but has no effect when StatementInfo parcel support is unavailable.\n`cop` | `\"true\"` | quoted boolean | Specifies whether COP Discovery is performed. Equivalent to the Teradata JDBC Driver `COP` connection parameter.\n`coplast` | `\"false\"` | quoted boolean | Specifies how COP Discovery determines the last COP hostname. Equivalent to the Teradata JDBC Driver `COPLAST` connection parameter. When `coplast` is `false` or omitted, or COP Discovery is turned off, then no DNS lookup occurs for the coplast hostname. When `coplast` is `true`, and COP Discovery is turned on, then a DNS lookup occurs for a coplast hostname.\n`dbs_port` | `\"1025\"` | quoted integer | Specifies the Teradata Database port number. Equivalent to the Teradata JDBC Driver `DBS_PORT` connection parameter.\n`encryptdata` | `\"false\"` | quoted boolean | Controls encryption of data exchanged between the Teradata Database and the Teradata SQL Driver for Python. Equivalent to the Teradata JDBC Driver `ENCRYPTDATA` connection parameter.\n`fake_result_sets` | `\"false\"` | quoted boolean | Controls whether a fake result set containing statement metadata precedes each real result set.\n`host` | | string | Specifies the Teradata Database hostname.\n`lob_support` | `\"true\"` | quoted boolean | Controls LOB support. Equivalent to the Teradata JDBC Driver `LOB_SUPPORT` connection parameter.\n`log` | `\"0\"` | quoted integer | Controls debug logging. Somewhat equivalent to the Teradata JDBC Driver `LOG` connection parameter. This parameter's behavior is subject to change in the future. This parameter's value is currently defined as an integer in which the 1-bit governs function and method tracing, the 2-bit governs debug logging, the 4-bit governs transmit and receive message hex dumps, and the 8-bit governs timing. Compose the value by adding together 1, 2, 4, and/or 8.\n`logdata` | | string | Specifies extra data for the chosen logon authentication method. Equivalent to the Teradata JDBC Driver `LOGDATA` connection parameter.\n`logmech` | `\"TD2\"` | string | Specifies the logon authentication method. Equivalent to the Teradata JDBC Driver `LOGMECH` connection parameter. Possible values are `TD2` (the default), `JWT`, `LDAP`, `KRB5` for Kerberos, or `TDNEGO`.\n`max_message_body` | `\"2097000\"` | quoted integer | Not fully implemented yet and intended for future usage. Equivalent to the Teradata JDBC Driver `MAX_MESSAGE_BODY` connection parameter.\n`partition` | `\"DBC/SQL\"` | string | Specifies the Teradata Database Partition. Equivalent to the Teradata JDBC Driver `PARTITION` connection parameter.\n`password` | | string | Specifies the Teradata Database password. Equivalent to the Teradata JDBC Driver `PASSWORD` connection parameter.\n`sip_support` | `\"true\"` | quoted boolean | Controls whether StatementInfo parcel is used. Equivalent to the Teradata JDBC Driver `SIP_SUPPORT` connection parameter.\n`teradata_values` | `\"true\"` | quoted boolean | Controls whether `str` or a more specific Python data type is used for certain Result set column value types. Refer to the table below for details.\n`tmode` | `\"DEFAULT\"` | string | Specifies the transaction mode. Equivalent to the Teradata JDBC Driver `TMODE` connection parameter. Possible values are `DEFAULT` (the default), `ANSI`, or `TERA`.\n`user` | | string | Specifies the Teradata Database username. Equivalent to the Teradata JDBC Driver `USER` connection parameter.\n\n\n\n### COP Discovery\n\nThe Teradata SQL Driver for Python provides Communications Processor (COP) discovery behavior when the `cop` connection parameter is `true` or omitted. COP Discovery is turned off when the `cop` connection parameter is `false`.\n\nA Teradata Database system can be composed of multiple Teradata Database nodes. One or more of the Teradata Database nodes can be configured to run the Teradata Database Gateway process. Each Teradata Database node that runs the Teradata Database Gateway process is termed a Communications Processor, or COP. COP Discovery refers to the procedure of identifying all the available COP hostnames and their IP addresses. COP hostnames can be defined in DNS, or can be defined in the client system's `hosts` file. Teradata strongly recommends that COP hostnames be defined in DNS, rather than the client system's `hosts` file. Defining COP hostnames in DNS provides centralized administration, and enables centralized changes to COP hostnames if and when the Teradata Database is reconfigured.\n\nThe `coplast` connection parameter specifies how COP Discovery determines the last COP hostname.\n* When `coplast` is `false` or omitted, or COP Discovery is turned off, then the Teradata SQL Driver for Python will not perform a DNS lookup for the coplast hostname.\n* When `coplast` is `true`, and COP Discovery is turned on, then the Teradata SQL Driver for Python will first perform a DNS lookup for a coplast hostname to obtain the IP address of the last COP hostname before performing COP Discovery. Subsequently, during COP Discovery, the Teradata SQL Driver for Python will stop searching for COP hostnames when either an unknown COP hostname is encountered, or a COP hostname is encountered whose IP address matches the IP address of the coplast hostname.\n\nSpecifying `coplast` as `true` can improve performance with DNS that is slow to respond for DNS lookup failures, and is necessary for DNS that never returns a DNS lookup failure.\n\nWhen performing COP Discovery, the Teradata SQL Driver for Python starts with cop1, which is appended to the database hostname, and then proceeds with cop2, cop3, ..., copN. The Teradata SQL Driver for Python supports domain-name qualification for COP Discovery and the coplast hostname. Domain-name qualification is recommended, because it can improve performance by avoiding unnecessary DNS lookups for DNS search suffixes.\n\nThe following table illustrates the DNS lookups performed for a hypothetical three-node Teradata Database system named \"whomooz\".\n\n | No domain name qualification | With domain name qualification
(Recommended)\n------ | ---------------------------- | ---\nApplication-specified
Teradata Database hostname | `whomooz` | `whomooz.domain.com`\nDefault: COP Discovery turned on, and `coplast` is `false` or omitted,
perform DNS lookups until unknown COP hostname is encountered | `whomoozcop1`→`10.0.0.1`
`whomoozcop2`→`10.0.0.2`
`whomoozcop3`→`10.0.0.3`
`whomoozcop4`→undefined | `whomoozcop1.domain.com`→`10.0.0.1`
`whomoozcop2.domain.com`→`10.0.0.2`
`whomoozcop3.domain.com`→`10.0.0.3`
`whomoozcop4.domain.com`→undefined\nCOP Discovery turned on, and `coplast` is `true`,
perform DNS lookups until COP hostname is found whose IP address matches the coplast hostname, or unknown COP hostname is encountered | `whomoozcoplast`→`10.0.0.3`
`whomoozcop1`→`10.0.0.1`
`whomoozcop2`→`10.0.0.2`
`whomoozcop3`→`10.0.0.3` | `whomoozcoplast.domain.com`→`10.0.0.3`
`whomoozcop1.domain.com`→`10.0.0.1`
`whomoozcop2.domain.com`→`10.0.0.2`
`whomoozcop3.domain.com`→`10.0.0.3`\nCOP Discovery turned off and round-robin DNS,
perform one DNS lookup that returns multiple IP addresses | `whomooz`→`10.0.0.1`, `10.0.0.2`, `10.0.0.3` | `whomooz.domain.com`→`10.0.0.1`, `10.0.0.2`, `10.0.0.3`\n\nRound-robin DNS rotates the list of IP addresses automatically to provide load distribution. Round-robin is only possible with DNS, not with the client system `hosts` file.\n\nThe Teradata SQL Driver for Python supports the definition of multiple IP addresses for COP hostnames and non-COP hostnames.\n\nFor the first connection to a particular Teradata Database system, the Teradata SQL Driver for Python generates a random number to index into the list of COPs. For each subsequent connection, the Teradata SQL Driver for Python increments the saved index until it wraps around to the first position. This behavior provides load distribution across all discovered COPs.\n\nThe Teradata SQL Driver for Python masks connection failures to down COPs, thereby hiding most connection failures from the client application. An exception is thrown to the application only when all the COPs are down for that database. If a COP is down, the next COP in the sequence (including a wrap-around to the first COP) receives extra connections that were originally destined for the down COP. When multiple IP addresses are defined in DNS for a COP, the Teradata SQL Driver for Python will attempt to connect to each of the COP's IP addresses, and the COP is considered down only when connection attempts fail to all of the COP's IP addresses.\n\nIf COP Discovery is turned off, or no COP hostnames are defined in DNS, the Teradata SQL Driver for Python connects directly to the hostname specified in the `host` connection parameter. This permits load distribution schemes other than the COP Discovery approach. For example, round-robin DNS or a TCP/IP load distribution product can be used. COP Discovery takes precedence over simple database hostname lookup. To use an alternative load distribution scheme, either ensure that no COP hostnames are defined in DNS, or turn off COP Discovery with `cop` as `false`.\n\n\n\n### Stored Password Protection\n\n#### Overview\n\nStored Password Protection enables an application to provide a connection password in encrypted form to the Teradata SQL Driver for Python.\n\nAn encrypted password may be specified in the following contexts:\n* A login password specified as the `password` connection parameter.\n* A login password specified within the `logdata` connection parameter.\n\nIf the password, however specified, begins with the prefix `ENCRYPTED_PASSWORD(` then the specified password must follow this format:\n\n`ENCRYPTED_PASSWORD(file:`*PasswordEncryptionKeyFileName*`,file:`*EncryptedPasswordFileName*`)`\n\nEach filename must be preceded by the `file:` prefix. The *PasswordEncryptionKeyFileName* must be separated from the *EncryptedPasswordFileName* by a single comma.\n\nThe *PasswordEncryptionKeyFileName* specifies the name of a file that contains the password encryption key and associated information. The *EncryptedPasswordFileName* specifies the name of a file that contains the encrypted password and associated information. The two files are described below.\n\nStored Password Protection is offered by the Teradata JDBC Driver, the Teradata SQL Driver for Python, and the Teradata SQL Driver for R. These drivers use the same file format.\n\n#### Program TJEncryptPassword\n\n`TJEncryptPassword.py` is a sample program to create encrypted password files for use with Stored Password Protection. When the Teradata SQL Driver for Python is installed, the sample programs are placed in the `teradatasql/samples` directory under your Python installation directory.\n\nThis program works in conjunction with Stored Password Protection offered by the Teradata JDBC Driver and the Teradata SQL Driver for Python. This program creates the files containing the password encryption key and encrypted password, which can be subsequently specified via the `ENCRYPTED_PASSWORD(` syntax.\n\nYou are not required to use this program to create the files containing the password encryption key and encrypted password. You can develop your own software to create the necessary files. You may also use the [`TJEncryptPassword.java`](http://developer.teradata.com/doc/connectivity/jdbc/reference/current/samp/TJEncryptPassword.java.txt) sample program that is available with the [Teradata JDBC Driver Reference](http://developer.teradata.com/connectivity/reference/jdbc-driver). The only requirement is that the files must match the format expected by the Teradata SQL Driver for Python, which is documented below.\n\nThis program encrypts the password and then immediately decrypts the password, in order to verify that the password can be successfully decrypted. This program mimics the password decryption of the Teradata SQL Driver for Python, and is intended to openly illustrate its operation and enable scrutiny by the community.\n\nThe encrypted password is only as safe as the two files. You are responsible for restricting access to the files containing the password encryption key and encrypted password. If an attacker obtains both files, the password can be decrypted. The operating system file permissions for the two files should be as limited and restrictive as possible, to ensure that only the intended operating system userid has access to the files.\n\nThe two files can be kept on separate physical volumes, to reduce the risk that both files might be lost at the same time. If either or both of the files are located on a network volume, then an encrypted wire protocol can be used to access the network volume, such as sshfs, encrypted NFSv4, or encrypted SMB 3.0.\n\nThis program accepts eight command-line arguments:\n\nArgument | Example | Description\n----------------------------- | -------------------- | ---\nTransformation | `AES/CBC/NoPadding` | Specifies the transformation in the form *Algorithm*`/`*Mode*`/`*Padding*. Supported transformations are listed in a table below.\nKeySizeInBits | `256` | Specifies the algorithm key size, which governs the encryption strength.\nMAC | `HmacSHA256` | Specifies the message authentication code (MAC) algorithm `HmacSHA1` or `HmacSHA256`.\nPasswordEncryptionKeyFileName | `PassKey.properties` | Specifies a filename in the current directory, a relative pathname, or an absolute pathname. The file is created by this program. If the file already exists, it will be overwritten by the new file.\nEncryptedPasswordFileName | `EncPass.properties` | Specifies a filename in the current directory, a relative pathname, or an absolute pathname. The filename or pathname that must differ from the PasswordEncryptionKeyFileName. The file is created by this program. If the file already exists, it will be overwritten by the new file.\nHostname | `whomooz` | Specifies the Teradata Database hostname.\nUsername | `guest` | Specifies the Teradata Database username.\nPassword | `please` | Specifies the Teradata Database password to be encrypted. Unicode characters in the password can be specified with the `\\u`*XXXX* escape sequence.\n\n#### Example Commands\n\nThe TJEncryptPassword program uses the Teradata SQL Driver for Python to log on to the specified Teradata Database using the encrypted password, so the Teradata SQL Driver for Python must have been installed with the `pip install teradatasql` command.\n\nThe following commands assume that the `TJEncryptPassword.py` program file is located in the current directory. When the Teradata SQL Driver for Python is installed, the sample programs are placed in the `teradatasql/samples` directory under your Python installation directory. Change your current directory to the `teradatasql/samples` directory under your Python installation directory.\n\nThe following example commands illustrate using a 256-bit AES key, and using the HmacSHA256 algorithm.\n\nPlatform | Command\n-------------- | ---\nmacOS or Linux | `python TJEncryptPassword.py AES/CBC/NoPadding 256 HmacSHA256 PassKey.properties EncPass.properties whomooz guest please`\nWindows | `py -3 TJEncryptPassword.py AES/CBC/NoPadding 256 HmacSHA256 PassKey.properties EncPass.properties whomooz guest please`\n\n#### Password Encryption Key File Format\n\nYou are not required to use the TJEncryptPassword program to create the files containing the password encryption key and encrypted password. You can develop your own software to create the necessary files, but the files must match the format expected by the Teradata SQL Driver for Python.\n\nThe password encryption key file is a text file in Java Properties file format, using the ISO 8859-1 character encoding.\n\nThe file must contain the following string properties:\n\nProperty | Description\n------------------------------------------------- | ---\n`version=1` | The version number must be `1`. This property is required.\n`transformation=`*Algorithm*`/`*Mode*`/`*Padding* | Specifies the transformation in the form *Algorithm*`/`*Mode*`/`*Padding*. Supported transformations are listed in a table below. This property is required.\n`algorithm=`*Algorithm* | This value must correspond to the *Algorithm* portion of the transformation. This property is required.\n`match=`*MatchValue* | The password encryption key and encrypted password files must contain the same match value. The match values are compared to ensure that the two specified files are related to each other, serving as a \"sanity check\" to help avoid configuration errors. This property is required.\n`key=`*HexDigits* | This value is the password encryption key, encoded as hex digits. This property is required.\n`mac=`*MACAlgorithm* | Specifies the message authentication code (MAC) algorithm `HmacSHA1` or `HmacSHA256`. Stored Password Protection performs Encrypt-then-MAC for protection from a padding oracle attack. This property is required.\n`mackey=`*HexDigits* | This value is the MAC key, encoded as hex digits. This property is required.\n\nThe TJEncryptPassword program uses a timestamp as a shared match value, but a timestamp is not required. Any shared string can serve as a match value. The timestamp is not related in any way to the encryption of the password, and the timestamp cannot be used to decrypt the password.\n\n#### Encrypted Password File Format\n\nThe encrypted password file is a text file in Java Properties file format, using the ISO 8859-1 character encoding.\n\nThe file must contain the following string properties:\n\nProperty | Description\n------------------------------------------------- | ---\n`version=1` | The version number must be `1`. This property is required.\n`match=`*MatchValue* | The password encryption key and encrypted password files must contain the same match value. The match values are compared to ensure that the two specified files are related to each other, serving as a \"sanity check\" to help avoid configuration errors. This property is required.\n`password=`*HexDigits* | This value is the encrypted password, encoded as hex digits. This property is required.\n`params=`*HexDigits* | This value contains the cipher algorithm parameters, if any, encoded as hex digits. Some ciphers need algorithm parameters that cannot be derived from the key, such as an initialization vector. This property is optional, depending on whether the cipher algorithm has associated parameters.\n`hash=`*HexDigits* | This value is the expected message authentication code (MAC), encoded as hex digits. After encryption, the expected MAC is calculated using the ciphertext, transformation name, and algorithm parameters if any. Before decryption, the Teradata SQL Driver for Python calculates the MAC using the ciphertext, transformation name, and algorithm parameters if any, and verifies that the calculated MAC matches the expected MAC. If the calculated MAC differs from the expected MAC, then either or both of the files may have been tampered with. This property is required.\n\nWhile `params` is technically optional, an initialization vector is required by all three block cipher modes `CBC`, `CFB`, and `OFB` that are supported by the Teradata SQL Driver for Python. ECB (Electronic Codebook) does not require `params`, but ECB is not supported by the Teradata SQL Driver for Python.\n\n#### Transformation, Key Size, and MAC\n\nA transformation is a string that describes the set of operations to be performed on the given input, to produce transformed output. A transformation specifies the name of a cryptographic algorithm such as DES or AES, followed by a feedback mode and padding scheme.\n\nThe Teradata SQL Driver for Python supports the following transformations and key sizes.\n\nTransformation | Key Size\n--------------------------- | ---\n`DES/CBC/NoPadding` | 64\n`DES/CBC/PKCS5Padding` | 64\n`DES/CFB/NoPadding` | 64\n`DES/CFB/PKCS5Padding` | 64\n`DES/OFB/NoPadding` | 64\n`DES/OFB/PKCS5Padding` | 64\n`DESede/CBC/NoPadding` | 192\n`DESede/CBC/PKCS5Padding` | 192\n`DESede/CFB/NoPadding` | 192\n`DESede/CFB/PKCS5Padding` | 192\n`DESede/OFB/NoPadding` | 192\n`DESede/OFB/PKCS5Padding` | 192\n`AES/CBC/NoPadding` | 128\n`AES/CBC/NoPadding` | 192\n`AES/CBC/NoPadding` | 256\n`AES/CBC/PKCS5Padding` | 128\n`AES/CBC/PKCS5Padding` | 192\n`AES/CBC/PKCS5Padding` | 256\n`AES/CFB/NoPadding` | 128\n`AES/CFB/NoPadding` | 192\n`AES/CFB/NoPadding` | 256\n`AES/CFB/PKCS5Padding` | 128\n`AES/CFB/PKCS5Padding` | 192\n`AES/CFB/PKCS5Padding` | 256\n`AES/OFB/NoPadding` | 128\n`AES/OFB/NoPadding` | 192\n`AES/OFB/NoPadding` | 256\n`AES/OFB/PKCS5Padding` | 128\n`AES/OFB/PKCS5Padding` | 192\n`AES/OFB/PKCS5Padding` | 256\n\nStored Password Protection uses a symmetric encryption algorithm such as DES or AES, in which the same secret key is used for encryption and decryption of the password. Stored Password Protection does not use an asymmetric encryption algorithm such as RSA, with separate public and private keys.\n\nCBC (Cipher Block Chaining) is a block cipher encryption mode. With CBC, each ciphertext block is dependent on all plaintext blocks processed up to that point. CBC is suitable for encrypting data whose total byte count exceeds the algorithm's block size, and is therefore suitable for use with Stored Password Protection.\n\nStored Password Protection hides the password length in the encrypted password file by extending the length of the UTF8-encoded password with trailing null bytes. The length is extended to the next 512-byte boundary.\n\n* A block cipher with no padding, such as `AES/CBC/NoPadding`, may only be used to encrypt data whose byte count after extension is a multiple of the algorithm's block size. The 512-byte boundary is compatible with many block ciphers. AES, for example, has a block size of 128 bits (16 bytes), and is therefore compatible with the 512-byte boundary.\n* A block cipher with padding, such as `AES/CBC/PKCS5Padding`, can be used to encrypt data of any length. However, CBC with padding is vulnerable to a \"padding oracle attack\", so Stored Password Protection performs Encrypt-then-MAC for protection from a padding oracle attack. MAC algorithms `HmacSHA1` and `HmacSHA256` are supported.\n* The Teradata SQL Driver for Python does not support block ciphers used as byte-oriented ciphers via modes such as `CFB8` or `OFB8`.\n\nThe strength of the encryption depends on your choice of cipher algorithm and key size.\n\n* AES uses a 128-bit (16 byte), 192-bit (24 byte), or 256-bit (32 byte) key.\n* DESede uses a 192-bit (24 byte) key. The The Teradata SQL Driver for Python does not support a 128-bit (16 byte) key for DESede.\n* DES uses a 64-bit (8 byte) key.\n\n#### Sharing Files with the Teradata JDBC Driver\n\nThe Teradata SQL Driver for Python and the Teradata JDBC Driver can share the files containing the password encryption key and encrypted password, if you use a transformation, key size, and MAC algorithm that is supported by both drivers.\n\n* Recommended choices for compatibility are `AES/CBC/NoPadding` and `HmacSHA256`.\n* Use a 256-bit key if your Java environment has the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files from Oracle.\n* Use a 128-bit key if your Java environment does not have the Unlimited Strength Jurisdiction Policy Files.\n* Use `HmacSHA1` for compatibility with JDK 1.4.2.\n\n#### File Locations\n\nFor the `ENCRYPTED_PASSWORD(` syntax of the Teradata SQL Driver for Python, each filename must be preceded by the `file:` prefix.\nThe *PasswordEncryptionKeyFileName* must be separated from the *EncryptedPasswordFileName* by a single comma. The files can be located in the current directory, specified with a relative path, or specified with an absolute path.\n\n\nExample for files in the current directory:\n\n ENCRYPTED_PASSWORD(file:JohnDoeKey.properties,file:JohnDoePass.properties)\n\nExample with relative paths:\n\n ENCRYPTED_PASSWORD(file:../dir1/JohnDoeKey.properties,file:../dir2/JohnDoePass.properties)\n\nExample with absolute paths on Windows:\n\n ENCRYPTED_PASSWORD(file:c:/dir1/JohnDoeKey.properties,file:c:/dir2/JohnDoePass.properties)\n\nExample with absolute paths on Linux:\n\n ENCRYPTED_PASSWORD(file:/dir1/JohnDoeKey.properties,file:/dir2/JohnDoePass.properties)\n\n#### Processing Sequence\n\nThe two filenames specified for an encrypted password must be accessible to the Teradata SQL Driver for Python and must conform to the properties file formats described above. The Teradata SQL Driver for Python raises an exception if the file is not accessible, or the file does not conform to the required file format.\n\nThe Teradata SQL Driver for Python verifies that the match values in the two files are present, and match each other. The Teradata SQL Driver for Python raises an exception if the match values differ from each other. The match values are compared to ensure that the two specified files are related to each other, serving as a \"sanity check\" to help avoid configuration errors. The TJEncryptPassword program uses a timestamp as a shared match value, but a timestamp is not required. Any shared string can serve as a match value. The timestamp is not related in any way to the encryption of the password, and the timestamp cannot be used to decrypt the password.\n\nBefore decryption, the Teradata SQL Driver for Python calculates the MAC using the ciphertext, transformation name, and algorithm parameters if any, and verifies that the calculated MAC matches the expected MAC. The Teradata SQL Driver for Python raises an exception if the calculated MAC differs from the expected MAC, to indicate that either or both of the files may have been tampered with.\n\nFinally, the Teradata SQL Driver for Python uses the decrypted password to log on to the Teradata Database.\n\n\n\n### Transaction Mode\n\nThe `tmode` connection parameter enables an application to specify the transaction mode for the connection.\n* `\"tmode\":\"ANSI\"` provides American National Standards Institute (ANSI) transaction semantics. This mode is recommended.\n* `\"tmode\":\"TERA\"` provides legacy Teradata transaction semantics. This mode is only recommended for legacy applications that require Teradata transaction semantics.\n* `\"tmode\":\"DEFAULT\"` provides the default transaction mode configured for the Teradata Database, which may be either ANSI or TERA mode. `\"tmode\":\"DEFAULT\"` is the default when the `tmode` connection parameter is omitted.\n\nWhile ANSI mode is generally recommended, please note that every application is different, and some applications may need to use TERA mode. The following differences between ANSI and TERA mode might affect a typical user or application:\n1. Silent truncation of inserted data occurs in TERA mode, but not ANSI mode. In ANSI mode, the Teradata Database returns an error instead of truncating data.\n2. Tables created in ANSI mode are `MULTISET` by default. Tables created in TERA mode are `SET` tables by default.\n3. For tables created in ANSI mode, character columns are `CASESPECIFIC` by default. For tables created in TERA mode, character columns are `NOT CASESPECIFIC` by default.\n4. In ANSI mode, character literals are `CASESPECIFIC`. In TERA mode, character literals are `NOT CASESPECIFIC`.\n\nThe last two behavior differences, taken together, may cause character data comparisons (such as in `WHERE` clause conditions) to be case-insensitive in TERA mode, but case-sensitive in ANSI mode. This, in turn, can produce different query results in ANSI mode versus TERA mode. Comparing two `NOT CASESPECIFIC` expressions is case-insensitive regardless of mode, and comparing a `CASESPECIFIC` expression to another expression of any kind is case-sensitive regardless of mode. You may explicitly `CAST` an expression to be `CASESPECIFIC` or `NOT CASESPECIFIC` to obtain the character data comparison required by your application.\n\nThe Teradata Database Reference / *SQL Request and Transaction Processing* recommends that ANSI mode be used for all new applications. The primary benefit of using ANSI mode is that inadvertent data truncation is avoided. In contrast, when using TERA mode, silent data truncation can occur when data is inserted, because silent data truncation is a feature of TERA mode.\n\nA drawback of using ANSI mode is that you can only call stored procedures that were created using ANSI mode, and you cannot call stored procedures that were created using TERA mode. It may not be possible to switch over to ANSI mode exclusively, because you may have some legacy applications that require TERA mode to work properly. You can work around this drawback by creating your stored procedures twice, in two different users/databases, once using ANSI mode, and once using TERA mode.\n\nRefer to the Teradata Database Reference / *SQL Request and Transaction Processing* for complete information regarding the differences between ANSI and TERA transaction modes.\n\n\n\n### Auto-Commit\n\nThe Teradata SQL Driver for Python provides auto-commit on and off functionality for both ANSI and TERA mode.\n\nWhen a connection is first established, it begins with the default auto-commit setting, which is on. When auto-commit is on, the driver is solely responsible for managing transactions, and the driver commits each SQL request that is successfully executed. An application should not execute any transaction management SQL commands when auto-commit is on. An application should not call the `commit` method or the `rollback` method when auto-commit is on.\n\nAn application can manage transactions itself by calling the `execute` method with the `teradata_nativesql` and `teradata_autocommit_off` escape functions to turn off auto-commit.\n\n cur.execute(\"{fn teradata_nativesql}{fn teradata_autocommit_off}\")\n\nWhen auto-commit is off, the driver leaves the current transaction open after each SQL request is executed, and the application is responsible for committing or rolling back the transaction by calling the `commit` or the `rollback` method, respectively.\n\nAuto-commit remains turned off until the application turns it back on.\n\n cur.execute(\"{fn teradata_nativesql}{fn teradata_autocommit_on}\")\n\nBest practices recommend that an application avoid executing database-vendor-specific transaction management commands such as `BT`, `ET`, `ABORT`, `COMMIT`, or `ROLLBACK`, because those kind of commands differ from one vendor to another. (They even differ between Teradata's two modes ANSI and TERA.) Instead, best practices recommend that an application only call the standard methods `commit` and `rollback` for transaction management.\n1. When auto-commit is on in ANSI mode, the driver automatically executes `COMMIT` after every successful SQL request.\n2. When auto-commit is off in ANSI mode, the driver does not automatically execute `COMMIT`. When the application calls the `commit` method, then the driver executes `COMMIT`.\n3. When auto-commit is on in TERA mode, the driver does not execute `BT` or `ET`, unless the application explicitly executes `BT` or `ET` commands itself, which is not recommended.\n4. When auto-commit is off in TERA mode, the driver executes `BT` before submitting the application's first SQL request of a new transaction. When the application calls the `commit` method, then the driver executes `ET` until the transaction is complete.\n\nAs part of the wire protocol between the Teradata Database and Teradata client interface software (such as the Teradata SQL Driver for Python), each message transmitted from the Teradata Database to the client has a bit designated to indicate whether the session has a transaction in progress or not. Thus, the client interface software is kept informed as to whether the session has a transaction in progress or not.\n\nIn TERA mode with auto-commit off, when the application uses the driver to execute a SQL request, if the session does not have a transaction in progress, then the driver automatically executes `BT` before executing the application's SQL request. Subsequently, in TERA mode with auto-commit off, when the application uses the driver to execute another SQL request, and the session already has a transaction in progress, then the driver has no need to execute `BT` before executing the application's SQL request.\n\nIn TERA mode, `BT` and `ET` pairs can be nested, and the Teradata Database keeps track of the nesting level. The outermost `BT`/`ET` pair defines the transaction scope; inner `BT`/`ET` pairs have no effect on the transaction because the Teradata Database does not provide actual transaction nesting. To commit the transaction, `ET` commands must be repeatedly executed until the nesting is unwound. The Teradata wire protocol bit (mentioned earlier) indicates when the nesting is unwound and the transaction is complete. When the application calls the `commit` method in TERA mode, the driver repeatedly executes `ET` commands until the nesting is unwound and the transaction is complete.\n\nIn rare cases, an application may not follow best practices and may explicitly execute transaction management commands. Such an application must turn off auto-commit before executing transaction management commands such as `BT`, `ET`, `ABORT`, `COMMIT`, or `ROLLBACK`. The application is responsible for executing the appropriate commands for the transaction mode in effect. TERA mode commands are `BT`, `ET`, and `ABORT`. ANSI mode commands are `COMMIT` and `ROLLBACK`. An application must take special care when opening a transaction in TERA mode with auto-commit off. In TERA mode with auto-commit off, when the application executes a SQL request, if the session does not have a transaction in progress, then the driver automatically executes `BT` before executing the application's SQL request. Therefore, the application should not begin a transaction by executing `BT`.\n\n # TERA mode example showing undesirable BT/ET nesting\n cur.execute(\"{fn teradata_nativesql}{fn teradata_autocommit_off}\")\n cur.execute(\"BT\") # BT automatically executed by the driver before this, and produces a nested BT\n cur.execute(\"insert into mytable1 values(1, 2)\")\n cur.execute(\"insert into mytable2 values(3, 4)\")\n cur.execute(\"ET\") # unwind nesting\n cur.execute(\"ET\") # complete transaction\n\n # TERA mode example showing how to avoid BT/ET nesting\n cur.execute(\"{fn teradata_nativesql}{fn teradata_autocommit_off}\")\n cur.execute(\"insert into mytable1 values(1, 2)\") # BT automatically executed by the driver before this\n cur.execute(\"insert into mytable2 values(3, 4)\")\n cur.execute(\"ET\") # complete transaction\n\nPlease note that neither previous example shows best practices. Best practices recommend that an application only call the standard methods `commit` and `rollback` for transaction management.\n\n # Example showing best practice\n cur.execute(\"{fn teradata_nativesql}{fn teradata_autocommit_off}\")\n cur.execute(\"insert into mytable1 values(1, 2)\")\n cur.execute(\"insert into mytable2 values(3, 4)\")\n con.commit()\n\n\n\n### Data Types\n\nThe table below lists the Teradata Database data types supported by the Teradata SQL Driver for Python, and indicates the corresponding Python data type returned in result set rows.\n\nTeradata Database data type | Result set Python data type | With `teradata_values` as `false`\n---------------------------------- | --------------------------------- | ---\n`BIGINT` | `int` |\n`BLOB` | `bytes` |\n`BYTE` | `bytes` |\n`BYTEINT` | `int` |\n`CHAR` | `str` |\n`CLOB` | `str` |\n`DATE` | `datetime.date` | `str`\n`DECIMAL` | `decimal.Decimal` | `str`\n`FLOAT` | `float` |\n`INTEGER` | `int` |\n`INTERVAL YEAR` | `str` |\n`INTERVAL YEAR TO MONTH` | `str` |\n`INTERVAL MONTH` | `str` |\n`INTERVAL DAY` | `str` |\n`INTERVAL DAY TO HOUR` | `str` |\n`INTERVAL DAY TO MINUTE` | `str` |\n`INTERVAL DAY TO SECOND` | `str` |\n`INTERVAL HOUR` | `str` |\n`INTERVAL HOUR TO MINUTE` | `str` |\n`INTERVAL HOUR TO SECOND` | `str` |\n`INTERVAL MINUTE` | `str` |\n`INTERVAL MINUTE TO SECOND` | `str` |\n`INTERVAL SECOND` | `str` |\n`NUMBER` | `decimal.Decimal` | `str`\n`PERIOD(DATE)` | `str` |\n`PERIOD(TIME)` | `str` |\n`PERIOD(TIME WITH TIME ZONE)` | `str` |\n`PERIOD(TIMESTAMP)` | `str` |\n`PERIOD(TIMESTAMP WITH TIME ZONE)` | `str` |\n`SMALLINT` | `int` |\n`TIME` | `datetime.time` | `str`\n`TIME WITH TIME ZONE` | `datetime.time` with `tzinfo` | `str`\n`TIMESTAMP` | `datetime.datetime` | `str`\n`TIMESTAMP WITH TIME ZONE` | `datetime.datetime` with `tzinfo` | `str`\n`VARBYTE` | `bytes` |\n`VARCHAR` | `str` |\n\nThe table below lists the parameterized SQL bind-value Python data types supported by the Teradata SQL Driver for Python, and indicates the corresponding Teradata Database data type transmitted to the server.\n\nBind-value Python data type | Teradata Database data type\n--------------------------------- | ---\n`bytes` | `VARBYTE`\n`datetime.date` | `DATE`\n`datetime.datetime` | `TIMESTAMP`\n`datetime.datetime` with `tzinfo` | `TIMESTAMP WITH TIME ZONE`\n`datetime.time` | `TIME`\n`datetime.time` with `tzinfo` | `TIME WITH TIME ZONE`\n`datetime.timedelta` | `VARCHAR` format compatible with `INTERVAL DAY TO SECOND`\n`decimal.Decimal` | `NUMBER`\n`float` | `FLOAT`\n`int` | `BIGINT`\n`str` | `VARCHAR`\n\nTransforms are used for SQL `ARRAY` data values, and they can be transferred to and from the database as `VARCHAR` values.\n\nTransforms are used for structured UDT data values, and they can be transferred to and from the database as `VARCHAR` values.\n\n\n\n### Null Values\n\nSQL `NULL` values received from the Teradata Database are returned in result set rows as Python `None` values.\n\nA Python `None` value bound to a question-mark parameter marker is transmitted to the Teradata Database as a `NULL` `VARCHAR` value.\n\n\n\n### Character Export Width\n\nThe Teradata SQL Driver for Python always uses the UTF8 session character set, and the `charset` connection parameter is not supported. Be aware of the Teradata Database's _Character Export Width_ behavior that adds trailing space padding to fixed-width `CHAR` data type result set column values when using the UTF8 session character set.\n\nThe Teradata Database `CHAR(`_n_`)` data type is a fixed-width data type (holding _n_ characters), and the Teradata Database reserves a fixed number of bytes for the `CHAR(`_n_`)` data type in response spools and in network message traffic.\n\nUTF8 is a variable-width character encoding scheme that requires a varying number of bytes for each character. When the UTF8 session character set is used, the Teradata Database reserves the maximum number of bytes that the `CHAR(`_n_`)` data type could occupy in response spools and in network message traffic. When the UTF8 session character set is used, the Teradata Database appends padding characters to the tail end of `CHAR(`_n_`)` values smaller than the reserved maximum size, so that the `CHAR(`_n_`)` values all occupy the same fixed number of bytes in response spools and in network message traffic.\n\nWork around this drawback by using `CAST` or `TRIM` in SQL `SELECT` statements, or in views, to convert fixed-width `CHAR` data types to `VARCHAR`.\n\nGiven a table with fixed-width `CHAR` columns:\n\n`CREATE TABLE MyTable (c1 CHAR(10), c2 CHAR(10))`\n\nOriginal query that produces trailing space padding:\n\n`SELECT c1, c2 FROM MyTable`\n\nModified query with either `CAST` or `TRIM` to avoid trailing space padding:\n\n`SELECT CAST(c1 AS VARCHAR(10)), TRIM(TRAILING FROM c1) FROM MyTable`\n\nOr wrap query in a view with `CAST` or `TRIM` to avoid trailing space padding:\n\n`CREATE VIEW MyView (c1, c2) AS SELECT CAST(c1 AS VARCHAR(10)), TRIM(TRAILING FROM c2) FROM MyTable`\n\n`SELECT c1, c2 FROM MyView`\n\nThis technique is also demonstrated in sample program `CharPadding.py`.\n\n\n\n### Module Constructors\n\n`teradatasql.connect(` *JSONConnectionString* `,` *Parameters...* `)`\n\nCreates a connection to the database and returns a Connection object.\n\nThe first parameter is an optional JSON string that defaults to `None`. The second and subsequent arguments are optional `kwargs`. Specify connection parameters as a JSON string, as `kwargs`, or a combination of the two.\n\nWhen a combination of parameters are specified, connection parameters specified as `kwargs` take precedence over same-named connection parameters specified in the JSON string.\n\n---\n\n`teradatasql.Date(` *Year* `,` *Month* `,` *Day* `)`\n\nCreates and returns a `datetime.date` value.\n\n---\n\n`teradatasql.DateFromTicks(` *Seconds* `)`\n\nCreates and returns a `datetime.date` value corresponding to the specified number of seconds after 1970-01-01 00:00:00.\n\n---\n\n`teradatasql.Time(` *Hour* `,` *Minute* `,` *Second* `)`\n\nCreates and returns a `datetime.time` value.\n\n---\n\n`teradatasql.TimeFromTicks(` *Seconds* `)`\n\nCreates and returns a `datetime.time` value corresponding to the specified number of seconds after 1970-01-01 00:00:00.\n\n---\n\n`teradatasql.Timestamp(` *Year* `,` *Month* `,` *Day* `,` *Hour* `,` *Minute* `,` *Second* `)`\n\nCreates and returns a `datetime.datetime` value.\n\n---\n\n`teradatasql.TimestampFromTicks(` *Seconds* `)`\n\nCreates and returns a `datetime.datetime` value corresponding to the specified number of seconds after 1970-01-01 00:00:00.\n\n\n\n### Module Globals\n\n`teradatasql.apilevel`\n\nString constant `\"2.0\"` indicating that the Teradata SQL Driver for Python implements the [PEP-249 Python Database API Specification 2.0](https://www.python.org/dev/peps/pep-0249/).\n\n---\n\n`teradatasql.threadsafety`\n\nInteger constant `2` indicating that threads may share this module, and threads may share connections, but threads must not share cursors.\n\n---\n\n`teradatasql.paramstyle`\n\nString constant `\"qmark\"` indicating that prepared SQL requests use question-mark parameter markers.\n\n\n\n### Module Exceptions\n\n`teradatasql.Error` is the base class for other exceptions.\n* `teradatasql.InterfaceError` is raised for errors related to the driver. Not supported yet.\n* `teradatasql.DatabaseError` is raised for errors related to the database.\n * `teradatasql.DataError` is raised for data value errors such as division by zero. Not supported yet.\n * `teradatasql.IntegrityError` is raised for referential integrity violations. Not supported yet.\n * `teradatasql.OperationalError` is raised for errors related to the database's operation.\n * `teradatasql.ProgrammingError` is raised for SQL object existence errors and SQL syntax errors. Not supported yet.\n\n\n\n### Connection Methods\n\n`.close()`\n\nCloses the Connection.\n\n---\n\n`.commit()`\n\nCommits the current transaction.\n\n---\n\n`.cursor()`\n\nCreates and returns a new Cursor object for the Connection.\n\n---\n\n`.rollback()`\n\nRolls back the current transaction.\n\n\n\n### Cursor Attributes\n\n`.arraysize`\n\nRead/write attribute specifying the number of rows to fetch at a time with the `.fetchmany()` method. Defaults to `1` meaning fetch a single row at a time.\n\n---\n\n`.connection`\n\nRead-only attribute indicating the Cursor's parent Connection object.\n\n---\n\n`.description`\n\nRead-only attribute consisting of a sequence of seven-item sequences that each describe a result set column, available after a SQL request is executed.\n* `.description[`*Column*`][0]` provides the column name.\n* `.description[`*Column*`][1]` provides the column type code as an object comparable to one of the Type Objects listed below.\n* `.description[`*Column*`][2]` provides the column display size in characters. Not implemented yet.\n* `.description[`*Column*`][3]` provides the column size in bytes.\n* `.description[`*Column*`][4]` provides the column precision if applicable, or `None` otherwise.\n* `.description[`*Column*`][5]` provides the column scale if applicable, or `None` otherwise.\n* `.description[`*Column*`][6]` provides the column nullability as `True` or `False`.\n\n---\n\n`.rowcount`\n\nRead-only attribute indicating the number of rows returned from, or affected by, the current SQL statement.\n\n\n\n### Cursor Methods\n\n`.callproc(` *ProcedureName* `,` *OptionalSequenceOfParameterValues* `)`\n\nCalls the stored procedure specified by *ProcedureName*.\nProvide the second argument as a sequence of `IN` and `INOUT` parameter values to bind the values to question-mark parameter markers in the SQL request.\nSpecifying parameter values as a mapping is not supported.\nReturns a result set consisting of the `INOUT` parameter output values, if any, followed by any dynamic result sets.\n\n`OUT` parameters are not supported by this method. Use `.execute` to call a stored procedure with `OUT` parameters.\n\n---\n\n`.close()`\n\nCloses the Cursor.\n\n---\n\n`.execute(` *SQLRequest* `,` *OptionalSequenceOfParameterValues* `)`\n\nExecutes the SQL request.\nIf a sequence of parameter values is provided as the second argument, the values will be bound to question-mark parameter markers in the SQL request. Specifying parameter values as a mapping is not supported.\n\n---\n\n`.executemany(` *SQLRequest* `,` *SequenceOfSequencesOfParameterValues* `)`\n\nExecutes the SQL request as an iterated SQL request for the batch of parameter values.\nThe batch of parameter values must be specified as a sequence of sequences. Specifying parameter values as a mapping is not supported.\n\n---\n\n`.fetchall()`\n\nFetches all remaining rows of the current result set.\nReturns a sequence of sequences of column values.\n\n---\n\n`.fetchmany(` *OptionalRowCount* `)`\n\nFetches the next series of rows of the current result set.\nThe argument specifies the number of rows to fetch. If no argument is provided, then the Cursor's `.arraysize` attribute will determine the number of rows to fetch.\nReturns a sequence of sequences of column values, or an empty sequence to indicate that all rows have been fetched.\n\n---\n\n`.fetchone()`\n\nFetches the next row of the current result set.\nReturns a sequence of column values, or `None` to indicate that all rows have been fetched.\n\n---\n\n`.nextset()`\n\nAdvances to the next result set.\nReturns `True` if another result set is available, or `None` to indicate that all result sets have been fetched.\n\n---\n\n`.setinputsizes(` *SequenceOfTypesOrSizes* `)`\n\nHas no effect.\n\n---\n\n`.setoutputsize(` *Size* `,` *OptionalColumnIndex* `)`\n\nHas no effect.\n\n\n\n### Type Objects\n\n`teradatasql.BINARY`\n\nIdentifies a SQL `BLOB`, `BYTE`, or `VARBYTE` column as a binary data type when compared with the Cursor's description attribute.\n\n`.description[`*Column*`][1] == teradatasql.BINARY`\n\n---\n\n`teradatasql.DATETIME`\n\nIdentifies a SQL `DATE`, `TIME`, `TIME WITH TIME ZONE`, `TIMESTAMP`, or `TIMESTAMP WITH TIME ZONE` column as a date/time data type when compared with the Cursor's description attribute.\n\n`.description[`*Column*`][1] == teradatasql.DATETIME`\n\n---\n\n`teradatasql.NUMBER`\n\nIdentifies a SQL `BIGINT`, `BYTEINT`, `DECIMAL`, `FLOAT`, `INTEGER`, `NUMBER`, or `SMALLINT` column as a numeric data type when compared with the Cursor's description attribute.\n\n`.description[`*Column*`][1] == teradatasql.NUMBER`\n\n---\n\n`teradatasql.STRING`\n\nIdentifies a SQL `CHAR`, `CLOB`, `INTERVAL`, `PERIOD`, or `VARCHAR` column as a character data type when compared with the Cursor's description attribute.\n\n`.description[`*Column*`][1] == teradatasql.STRING`\n\n\n\n### Escape Syntax\n\nThe Teradata SQL Driver for Python accepts most of the JDBC escape clauses offered by the Teradata JDBC Driver.\n\n#### Date and Time Literals\n\nDate and time literal escape clauses are replaced by the corresponding SQL literal before the SQL request text is transmitted to the database.\n\nLiteral Type | Format\n------------ | ------\nDate | `{d '`*yyyy-mm-dd*`'}`\nTime | `{t '`*hh:mm:ss*`'}`\nTimestamp | `{ts '`*yyyy-mm-dd hh:mm:ss*`'}`\nTimestamp | `{ts '`*yyyy-mm-dd hh:mm:ss.f*`'}`\n\nFor timestamp literal escape clauses, the decimal point and fractional digits may be omitted, or 1 to 6 fractional digits *f* may be specified after a decimal point.\n\n#### Scalar Functions\n\nScalar function escape clauses are replaced by the corresponding SQL expression before the SQL request text is transmitted to the database.\n\nNumeric Function | Returns\n-------------------------------------- | ---\n`{fn ABS(`*number*`)}` | Absolute value of *number*\n`{fn ACOS(`*float*`)}` | Arccosine, in radians, of *float*\n`{fn ASIN(`*float*`)}` | Arcsine, in radians, of *float*\n`{fn ATAN(`*float*`)}` | Arctangent, in radians, of *float*\n`{fn ATAN2(`*y*`,`*x*`)}` | Arctangent, in radians, of *y* / *x*\n`{fn CEILING(`*number*`)}` | Smallest integer greater than or equal to *number*\n`{fn COS(`*float*`)}` | Cosine of *float* radians\n`{fn COT(`*float*`)}` | Cotangent of *float* radians\n`{fn DEGREES(`*number*`)}` | Degrees in *number* radians\n`{fn EXP(`*float*`)}` | *e* raised to the power of *float*\n`{fn FLOOR(`*number*`)}` | Largest integer less than or equal to *number*\n`{fn LOG(`*float*`)}` | Natural (base *e*) logarithm of *float*\n`{fn LOG10(`*float*`)}` | Base 10 logarithm of *float*\n`{fn MOD(`*integer1*`,`*integer2*`)}` | Remainder for *integer1* / *integer2*\n`{fn PI()}` | The constant pi, approximately equal to 3.14159...\n`{fn POWER(`*number*`,`*integer*`)}` | *number* raised to *integer* power\n`{fn RADIANS(`*number*`)}` | Radians in *number* degrees\n`{fn RAND(`*seed*`)}` | A random float value such that 0 ≤ value < 1, and *seed* is ignored\n`{fn ROUND(`*number*`,`*places*`)}` | *number* rounded to *places*\n`{fn SIGN(`*number*`)}` | -1 if *number* is negative; 0 if *number* is 0; 1 if *number* is positive\n`{fn SIN(`*float*`)}` | Sine of *float* radians\n`{fn SQRT(`*float*`)}` | Square root of *float*\n`{fn TAN(`*float*`)}` | Tangent of *float* radians\n`{fn TRUNCATE(`*number*`,`*places*`)}` | *number* truncated to *places*\n\nString Function | Returns\n-------------------------------------------------------------- | ---\n`{fn ASCII(`*string*`)}` | ASCII code of the first character in *string*\n`{fn CHAR(`*code*`)}` | Character with ASCII *code*\n`{fn CHAR_LENGTH(`*string*`)}` | Length in characters of *string*\n`{fn CHARACTER_LENGTH(`*string*`)}` | Length in characters of *string*\n`{fn CONCAT(`*string1*`,`*string2*`)}` | String formed by concatenating *string1* and *string2*\n`{fn DIFFERENCE(`*string1*`,`*string2*`)}` | A number from 0 to 4 that indicates the phonetic similarity of *string1* and *string2* based on their Soundex codes, such that a larger return value indicates greater phonetic similarity; 0 indicates no similarity, 4 indicates strong similarity\n`{fn INSERT(`*string1*`,`*position*`,`*length*`,`*string2*`)}` | String formed by replacing the *length*-character segment of *string1* at *position* with *string2*, available beginning with Teradata Database 15.0\n`{fn LCASE(`*string*`)}` | String formed by replacing all uppercase characters in *string* with their lowercase equivalents\n`{fn LEFT(`*string*`,`*count*`)}` | Leftmost *count* characters of *string*\n`{fn LENGTH(`*string*`)}` | Length in characters of *string*\n`{fn LOCATE(`*string1*`,`*string2*`)}` | Position in *string2* of the first occurrence of *string1*, or 0 if *string2* does not contain *string1*\n`{fn LTRIM(`*string*`)}` | String formed by removing leading spaces from *string*\n`{fn OCTET_LENGTH(`*string*`)}` | Length in octets (bytes) of *string*\n`{fn POSITION(`*string1*` IN `*string2*`)}` | Position in *string2* of the first occurrence of *string1*, or 0 if *string2* does not contain *string1*\n`{fn REPEAT(`*string*`,`*count*`)}` | String formed by repeating *string* *count* times, available beginning with Teradata Database 15.0\n`{fn REPLACE(`*string1*`,`*string2*`,`*string3*`)}` | String formed by replacing all occurrences of *string2* in *string1* with *string3*\n`{fn RIGHT(`*string*`,`*count*`)}` | Rightmost *count* characters of *string*, available beginning with Teradata Database 15.0\n`{fn RTRIM(`*string*`)}` | String formed by removing trailing spaces from *string*\n`{fn SOUNDEX(`*string*`)}` | Soundex code for *string*\n`{fn SPACE(`*count*`)}` | String consisting of *count* spaces\n`{fn SUBSTRING(`*string*`,`*position*`,`*length*`)}` | The *length*-character segment of *string* at *position*\n`{fn UCASE(`*string*`)}` | String formed by replacing all lowercase characters in *string* with their uppercase equivalents\n\nSystem Function | Returns\n--------------------------------------- | ---\n`{fn DATABASE()}` | Current default database name\n`{fn IFNULL(`*expression*`,`*value*`)}` | *expression* if *expression* is not NULL, or *value* if *expression* is NULL\n`{fn USER()}` | Logon user name, which may differ from the current authorized user name after `SET QUERY_BAND` sets a proxy user\n\nTime/Date Function | Returns\n------------------------------------------------------------------ | ---\n`{fn CURDATE()}` | Current date\n`{fn CURRENT_DATE()}` | Current date\n`{fn CURRENT_TIME()}` | Current time\n`{fn CURRENT_TIMESTAMP()}` | Current date and time\n`{fn CURTIME()}` | Current time\n`{fn DAYOFMONTH(`*date*`)}` | Integer from 1 to 31 indicating the day of month in *date*\n`{fn EXTRACT(YEAR FROM `*value*`)}` | The year component of the date and/or time *value*\n`{fn EXTRACT(MONTH FROM `*value*`)}` | The month component of the date and/or time *value*\n`{fn EXTRACT(DAY FROM `*value*`)}` | The day component of the date and/or time *value*\n`{fn EXTRACT(HOUR FROM `*value*`)}` | The hour component of the date and/or time *value*\n`{fn EXTRACT(MINUTE FROM `*value*`)}` | The minute component of the date and/or time *value*\n`{fn EXTRACT(SECOND FROM `*value*`)}` | The second component of the date and/or time *value*\n`{fn HOUR(`*time*`)}` | Integer from 0 to 23 indicating the hour of *time*\n`{fn MINUTE(`*time*`)}` | Integer from 0 to 59 indicating the minute of *time*\n`{fn MONTH(`*date*`)}` | Integer from 1 to 12 indicating the month of *date*\n`{fn NOW()}` | Current date and time\n`{fn SECOND(`*time*`)}` | Integer from 0 to 59 indicating the second of *time*\n`{fn TIMESTAMPADD(SQL_TSI_YEAR,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* years to *timestamp*\n`{fn TIMESTAMPADD(SQL_TSI_MONTH,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* months to *timestamp*\n`{fn TIMESTAMPADD(SQL_TSI_DAY,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* days to *timestamp*\n`{fn TIMESTAMPADD(SQL_TSI_HOUR,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* hours to *timestamp*\n`{fn TIMESTAMPADD(SQL_TSI_MINUTE,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* minutes to *timestamp*\n`{fn TIMESTAMPADD(SQL_TSI_SECOND,`*count*`,`*timestamp*`)}` | Timestamp formed by adding *count* seconds to *timestamp*\n`{fn TIMESTAMPDIFF(SQL_TSI_YEAR,`*timestamp1*`,`*timestamp2*`)}` | Number of years by which *timestamp2* exceeds *timestamp1*\n`{fn TIMESTAMPDIFF(SQL_TSI_MONTH,`*timestamp1*`,`*timestamp2*`)}` | Number of months by which *timestamp2* exceeds *timestamp1*\n`{fn TIMESTAMPDIFF(SQL_TSI_DAY,`*timestamp1*`,`*timestamp2*`)}` | Number of days by which *timestamp2* exceeds *timestamp1*\n`{fn TIMESTAMPDIFF(SQL_TSI_HOUR,`*timestamp1*`,`*timestamp2*`)}` | Number of hours by which *timestamp2* exceeds *timestamp1*\n`{fn TIMESTAMPDIFF(SQL_TSI_MINUTE,`*timestamp1*`,`*timestamp2*`)}` | Number of minutes by which *timestamp2* exceeds *timestamp1*\n`{fn TIMESTAMPDIFF(SQL_TSI_SECOND,`*timestamp1*`,`*timestamp2*`)}` | Number of seconds by which *timestamp2* exceeds *timestamp1*\n`{fn YEAR(`*date*`)}` | The year of *date*\n\n#### Conversion Functions\n\nConversion function escape clauses are replaced by the corresponding SQL expression before the SQL request text is transmitted to the database.\n\nConversion Function | Returns\n--------------------------------------------------------------- | ---\n`{fn CONVERT(`*value*`, SQL_BIGINT)}` | *value* converted to SQL `BIGINT`\n`{fn CONVERT(`*value*`, SQL_BINARY(`*size*`))}` | *value* converted to SQL `BYTE(`*size*`)`\n`{fn CONVERT(`*value*`, SQL_CHAR(`*size*`))}` | *value* converted to SQL `CHAR(`*size*`)`\n`{fn CONVERT(`*value*`, SQL_DATE)}` | *value* converted to SQL `DATE`\n`{fn CONVERT(`*value*`, SQL_DECIMAL(`*precision*`,`*scale*`))}` | *value* converted to SQL `DECIMAL(`*precision*`,`*scale*`)`\n`{fn CONVERT(`*value*`, SQL_DOUBLE)}` | *value* converted to SQL `DOUBLE PRECISION`, a synonym for `FLOAT`\n`{fn CONVERT(`*value*`, SQL_FLOAT)}` | *value* converted to SQL `FLOAT`\n`{fn CONVERT(`*value*`, SQL_INTEGER)}` | *value* converted to SQL `INTEGER`\n`{fn CONVERT(`*value*`, SQL_LONGVARBINARY)}` | *value* converted to SQL `VARBYTE(64000)`\n`{fn CONVERT(`*value*`, SQL_LONGVARCHAR)}` | *value* converted to SQL `LONG VARCHAR`\n`{fn CONVERT(`*value*`, SQL_NUMERIC)}` | *value* converted to SQL `NUMBER`\n`{fn CONVERT(`*value*`, SQL_SMALLINT)}` | *value* converted to SQL `SMALLINT`\n`{fn CONVERT(`*value*`, SQL_TIME(`*scale*`))}` | *value* converted to SQL `TIME(`*scale*`)`\n`{fn CONVERT(`*value*`, SQL_TIMESTAMP(`*scale*`))}` | *value* converted to SQL `TIMESTAMP(`*scale*`)`\n`{fn CONVERT(`*value*`, SQL_TINYINT)}` | *value* converted to SQL `BYTEINT`\n`{fn CONVERT(`*value*`, SQL_VARBINARY(`*size*`))}` | *value* converted to SQL `VARBYTE(`*size*`)`\n`{fn CONVERT(`*value*`, SQL_VARCHAR(`*size*`))}` | *value* converted to SQL `VARCHAR(`*size*`)`\n\n#### LIKE Predicate Escape Character\n\nWithin a `LIKE` predicate's *pattern* argument, the characters `%` (percent) and `_` (underscore) serve as wildcards.\nTo interpret a particular wildcard character literally in a `LIKE` predicate's *pattern* argument, the wildcard character must be preceded by an escape character, and the escape character must be indicated in the `LIKE` predicate's `ESCAPE` clause.\n\n`LIKE` predicate escape character escape clauses are replaced by the corresponding SQL clause before the SQL request text is transmitted to the database.\n\n`{escape '`*EscapeCharacter*`'}`\n\nThe escape clause must be specified immediately after the `LIKE` predicate that it applies to.\n\n#### Outer Joins\n\nOuter join escape clauses are replaced by the corresponding SQL clause before the SQL request text is transmitted to the database.\n\n`{oj `*TableName*` `*OptionalCorrelationName*` LEFT OUTER JOIN `*TableName*` `*OptionalCorrelationName*` ON `*JoinCondition*`}`\n\n`{oj `*TableName*` `*OptionalCorrelationName*` RIGHT OUTER JOIN `*TableName*` `*OptionalCorrelationName*` ON `*JoinCondition*`}`\n\n`{oj `*TableName*` `*OptionalCorrelationName*` FULL OUTER JOIN `*TableName*` `*OptionalCorrelationName*` ON `*JoinCondition*`}`\n\n#### Stored Procedure Calls\n\nStored procedure call escape clauses are replaced by the corresponding SQL clause before the SQL request text is transmitted to the database.\n\n`{call `*ProcedureName*`}`\n\n`{call `*ProcedureName*`(`*CommaSeparatedParameterValues...*`)}`\n\n#### Native SQL\n\nWhen a SQL request contains the native SQL escape clause, all escape clauses are replaced in the SQL request text, and the modified SQL request text is returned to the application as a result set containing a single row and a single VARCHAR column. The SQL request text is not transmitted to the database, and the SQL request is not executed. The native SQL escape clause mimics the functionality of the JDBC API `Connection.nativeSQL` method.\n\n`{fn teradata_nativesql}`\n\n#### Connection Functions\n\nThe following table lists connection function escape clauses that are intended for use with the native SQL escape clause `{fn teradata_nativesql}`.\n\nThese functions provide information about the connection, or control the behavior of the connection.\nFunctions that provide information return locally-cached information and avoid a round-trip to the database.\nConnection function escape clauses are replaced by the returned information before the SQL request text is transmitted to the database.\n\nConnection Function | Returns\n--------------------------------------------- | ---\n`{fn teradata_amp_count}` | Number of AMPs of the Teradata Database system\n`{fn teradata_database_version}` | Version number of the Teradata Database\n`{fn teradata_driver_version}` | Version number of the Teradata SQL Driver for Python\n`{fn teradata_getloglevel}` | Current log level\n`{fn teradata_logon_sequence_number}` | Session's Logon Sequence Number, if available\n`{fn teradata_provide(config_response)}` | Config Response parcel contents in JSON format\n`{fn teradata_provide(connection_id)}` | Connection's unique identifier within the process\n`{fn teradata_provide(default_connection)}` | `false` indicating this is not a stored procedure default connection\n`{fn teradata_provide(host_id)}` | Session's host ID\n`{fn teradata_provide(java_charset_name)}` | `UTF8`\n`{fn teradata_provide(lob_support)}` | `true` or `false` indicating this connection's LOB support\n`{fn teradata_provide(local_address)}` | Local address of the connection's TCP socket\n`{fn teradata_provide(local_port)}` | Local port of the connection's TCP socket\n`{fn teradata_provide(original_hostname)}` | Original specified Teradata Database hostname\n`{fn teradata_provide(redrive_active)}` | `true` or `false` indicating whether this connection has Redrive active\n`{fn teradata_provide(remote_address)}` | Hostname (if available) and IP address of the connected Teradata Database node\n`{fn teradata_provide(remote_port)}` | TCP port number of the Teradata Database\n`{fn teradata_provide(rnp_active)}` | `true` or `false` indicating whether this connection has Recoverable Network Protocol active\n`{fn teradata_provide(session_charset_code)}` | Session character set code `191`\n`{fn teradata_provide(session_charset_name)}` | Session character set name `UTF8`\n`{fn teradata_provide(sip_support)}` | `true` or `false` indicating this connection's StatementInfo parcel support\n`{fn teradata_provide(transaction_mode)}` | Session's transaction mode, `ANSI` or `TERA`\n`{fn teradata_session_number}` | Session number\n`{fn teradata_setloglevel(`*LogLevel*`)}` | Empty string, and changes the connection's *LogLevel*\n\n#### Request-Scope Functions\n\nThe following table lists request-scope function escape clauses that are intended for use with the Cursor `.execute` or `.executemany` methods.\n\nThese functions control the behavior of the corresponding Cursor, and are limited in scope to the particular SQL request in which they are specified.\nRequest-scope function escape clauses are removed before the SQL request text is transmitted to the database.\n\nRequest-Scope Function | Effect\n------------------------------------------------------ | ---\n`{fn teradata_failfast}` | Reject (\"fail fast\") this SQL request rather than delay by a workload management rule or throttle\n`{fn teradata_fake_result_sets}` | A fake result set containing statement metadata precedes each real result set\n`{fn teradata_lobselect(`*Option*`)}` | Executes the SQL request with LOB select *Option* `S` (spool-scoped LOB locators), `T` (transaction-scoped LOB locators), or the default `I` (inline materialized LOB values)\n`{fn teradata_provide(request_scope_lob_support_off)}` | Turns off LOB support for this SQL request\n`{fn teradata_provide(request_scope_refresh_rsmd)}` | Executes the SQL request with the default request processing option `B` (both)\n`{fn teradata_provide(request_scope_sip_support_off)}` | Turns off StatementInfo parcel support for this SQL request\n`{fn teradata_rpo(`*RequestProcessingOption*`)}` | Executes the SQL request with *RequestProcessingOption* `S` (prepare), `E` (execute), or the default `B` (both)\n`{fn teradata_untrusted}` | Marks the SQL request as untrusted; not implemented yet\n\n\n\n### FastLoad\n\nThe Teradata SQL Driver for Python now offers FastLoad.\n\nPlease be aware that this is just the initial release of the FastLoad feature. Think of it as a beta or preview version. It works, but does not yet offer all the features that JDBC FastLoad offers. FastLoad is still under active development, and we will continue to enhance it in subsequent builds.\n\nFastLoad has limitations and cannot be used in all cases as a substitute for SQL batch insert:\n* FastLoad can only load into an empty permanent table.\n* FastLoad cannot load additional rows into a table that already contains rows.\n* FastLoad cannot load into a volatile table or global temporary table.\n* FastLoad cannot load duplicate rows into a `MULTISET` table.\n* Do not use FastLoad to load only a few rows, because FastLoad opens extra connections to the database, which is time consuming.\n* Only use FastLoad to load many rows (at least 100,000 rows) so that the row-loading performance gain exceeds the overhead of opening additional connections.\n* FastLoad does not support all Teradata Database data types. For example, `BLOB` and `CLOB` are not supported.\n* FastLoad requires StatementInfo parcel support to be enabled.\n* FastLoad locks the destination table.\n* If Online Archive encounters a table being loaded with FastLoad, online archiving of that table will be bypassed.\n\nYour application can bind a single row of data for FastLoad, but that is not recommended because the overhead of opening additional connections causes FastLoad to be slower than a regular SQL `INSERT` for a single row.\n\nHow to use FastLoad:\n* Auto-commit should be turned off before beginning a FastLoad.\n* FastLoad is intended for binding many rows at a time. Each batch of rows must be able to fit into memory.\n* Your application can insert multiple batches in a loop for the same FastLoad, when auto-commit is turned off.\n* Each column's data type must be consistent across every row in every batch over the entire FastLoad.\n* The column values of the first row of the first batch dictate what the column data types must be in all subsequent rows and all subsequent batches of the FastLoad.\n* Each batch of rows must fit into a single request message that is transmitted to the database. FastLoad evenly distributes the batched rows across the available data transfer connections, and uses overlapped I/O to send and receive messages in parallel.\n\nIf the batch is too large, the Teradata Database will return error 8013 \"The LAN message MessageLength field is invalid\". Assuming Teradata Database 16.0 and later with Large Messages enabled, the following table lists the maximum number of rows per batch for FastLoad:\n\n| Row size | sessions=1 | sessions=2 | sessions=4 | sessions=8 |\n| ---------:| ----------:| ----------:| ----------:| ----------:|\n| 100 bytes | 160,000 | 320,000 | 640,000 | 1,280,000 |\n| 1 KB | 16,000 | 32,000 | 64,000 | 128,000 |\n| 10 KB | 1,600 | 3,200 | 6,400 | 12,800 |\n| 60 KB | 266 | 532 | 1,064 | 2,128 |\n\nTo use FastLoad, your application must prepend one of the following escape functions to the `INSERT` statement:\n* `{fn teradata_try_fastload}` tries to use FastLoad for the `INSERT` statement, and automatically executes the `INSERT` as a regular SQL statement when the `INSERT` is not compatible with FastLoad.\n* `{fn teradata_require_fastload}` requires FastLoad for the `INSERT` statement, and fails with an error when the `INSERT` is not compatible with FastLoad.\n\nYour application can prepend other optional escape functions to the `INSERT` statement:\n* `{fn teradata_sessions(`n`)}` specifies the number of data transfer connections to be opened, and is capped at the number of AMPs. The default is the smaller of 8 or the number of AMPs. `CHECK WORKLOAD` is not yet used, meaning that the driver does not ask the database how many data transfer connections should be used.\n* `{fn teradata_error_table_1_suffix(`suffix`)}` specifies what suffix to append to the name of FastLoad error table 1. The default suffix is `_ERR_1`.\n* `{fn teradata_error_table_2_suffix(`suffix`)}` specifies what suffix to append to the name of FastLoad error table 2. The default suffix is `_ERR_2`.\n* `{fn teradata_error_table_database(`dbname`)}` specifies the parent database name for FastLoad error tables 1 and 2. By default, the FastLoad error tables reside in the same database as the destination table.\n\nAfter beginning a FastLoad, your application can obtain the Logon Sequence Number (LSN) assigned to the FastLoad by prepending the following escape functions to the `INSERT` statement:\n* `{fn teradata_nativesql}{fn teradata_logon_sequence_number}` returns the string form of an integer representing the Logon Sequence Number (LSN) for the FastLoad. Returns an empty string if the request is not a FastLoad.\n\nFastLoad does not stop for data errors such as constraint violations or unique primary index violations. After inserting each batch of rows, your application must obtain warning and error information by prepending the following escape functions to the `INSERT` statement:\n* `{fn teradata_nativesql}{fn teradata_get_warnings}` returns in one string all warnings generated by FastLoad for the request.\n* `{fn teradata_nativesql}{fn teradata_get_errors}` returns in one string all data errors observed by FastLoad for the most recent batch. The data errors are obtained from FastLoad error table 1, for problems such as constraint violations, data type conversion errors, and unavailable AMP conditions.\n\nYour application ends FastLoad by committing or rolling back the current transaction. After commit or rollback, your application must obtain warning and error information by prepending the following escape functions to the `INSERT` statement:\n* `{fn teradata_nativesql}{fn teradata_get_warnings}` returns in one string all warnings generated by FastLoad for the commit or rollback. The warnings are obtained from FastLoad error table 2, for problems such as duplicate rows.\n* `{fn teradata_nativesql}{fn teradata_get_errors}` returns in one string all data errors observed by FastLoad for the commit or rollback. The data errors are obtained from FastLoad error table 2, for problems such as unique primary index violations.\n\nWarning and error information remains available until the next batch is inserted or until the commit or rollback. Each batch execution clears the prior warnings and errors. Each commit or rollback clears the prior warnings and errors.\n\n\n\n### Change Log\n\n`16.20.0.52` - Oct 18, 2019\n* Sample programs for fake result sets\n\n`16.20.0.51` - Oct 16, 2019\n* GOSQL-46 LDAP password special characters\n\n`16.20.0.50` - Oct 7, 2019\n* PYDBAPI-68 improve performance for batch bind values\n\n`16.20.0.49` - Oct 3, 2019\n* GOSQL-45 FastLoad interop with Stored Password Protection\n\n`16.20.0.48` - Sep 6, 2019\n* GOSQL-14 add support for FastLoad protocol\n* GOSQL-34 negative scale for Number values\n* PYDBAPI-29 Data Transfer - FastLoad Protocol\n\n`16.20.0.47` - Aug 27, 2019\n* GOSQL-40 Skip executing empty SQL request text\n* PYDBAPI-67 teradatasql.connect JSON connection string optional\n\n`16.20.0.46` - Aug 16, 2019\n* GOSQL-39 COP Discovery interop with Kerberos\n\n`16.20.0.45` - Aug 12, 2019\n* GOSQL-38 timestamp prefix log messages\n\n`16.20.0.44` - Aug 7, 2019\n* GOSQL-4 Support COP discovery\n* PYDBAPI-36 COP Discovery\n\n`16.20.0.43` - Jul 29, 2019\n* GOSQL-18 Auto-commit\n* PYDBAPI-61 commit and rollback methods\n\n`16.20.0.42` - Jun 7, 2019\n* PYDBAPI-65 sample program `BatchInsert.py`\n\n`16.20.0.41` - Feb 14, 2019\n* PYDBAPI-57 fetchmany may return \"rows are closed\" instead of empty result set\n\n`16.20.0.40` - Feb 8, 2019\n* GOSQL-11 JWT authentication method\n* GOSQL-16 tmode connection parameter\n* GOSQL-17 commit and rollback functions\n\n`16.20.0.39` - Oct 26, 2018\n* Sample program `StoredProc.py`\n\n`16.20.0.38` - Oct 25, 2018\n* PYDBAPI-56 Stored Procedure Dynamic Result Sets\n\n`16.20.0.37` - Oct 22, 2018\n* Documentation change\n\n`16.20.0.36` - Oct 22, 2018\n* GOSQL-5 Create/Replace Procedure MultiTSR protocol\n\n`16.20.0.35` - Oct 22, 2018\n* GOSQL-10 Stored Password Protection\n* PYDBAPI-28 Secure Password at rest\n* PYDBAPI-47 Port sample program TJEncryptPassword to Python\n\n`16.20.0.34` - Oct 15, 2018\n* Fix for sample program `TJEncryptPassword.py`\n\n`16.20.0.33` - Oct 12, 2018\n* Installation dependency pycryptodome\n\n`16.20.0.32` - Sep 19, 2018\n* Sample programs `LoadCSVFile.py` and `MetadataFromPrepare.py`\n* Escape function teradata_fake_result_sets\n\n`16.20.0.31` - Sep 19, 2018\n* Added function tracing\n\n`16.20.0.30` - Sep 14, 2018\n* PYDBAPI-12 Connectivity\n* PYDBAPI-33 Pandas library Interoperability\n* Moved samples directory\n\n`16.20.0.29` - Sep 14, 2018\n* Sample program `ElicitFile.py`\n\n`16.20.0.28` - Sep 13, 2018\n* Documentation change\n\n`16.20.0.27` - Sep 12, 2018\n* Documentation change\n\n`16.20.0.26` - Sep 11, 2018\n* PYDBAPI-8 Documentation\n* PYDBAPI-9 User Guide Content\n\n`16.20.0.25` - Sep 10, 2018\n* Documentation change\n\n`16.20.0.24` - Sep 6, 2018\n* PYDBAPI-54 Implement cursor rowcount attribute\n* PYDBAPI-55 Improved support for Python data types\n\n`16.20.0.23` - Aug 31, 2018\n* KeepResponse only for LOB locators\n\n`16.20.0.22` - Aug 30, 2018\n* Fixed NUMBER values\n\n`16.20.0.21` - Aug 29, 2018\n* Close orphaned rows\n\n`16.20.0.20` - Aug 28, 2018\n* decimal and datetime values\n\n`16.20.0.19` - Aug 22, 2018\n* timedelta bind values\n\n`16.20.0.18` - Aug 21, 2018\n* datetime.datetime bind values\n\n`16.20.0.17` - Aug 20, 2018\n* Version number in errors\n\n`16.20.0.16` - Aug 17, 2018\n* SLES 11 SP1 compatibility\n\n`16.20.0.15` - Aug 17, 2018\n* Documentation change\n\n`16.20.0.14` - Aug 10, 2018\n* Documentation change\n\n`16.20.0.13` - Aug 9, 2018\n* Documentation change\n\n`16.20.0.12` - Aug 9, 2018\n* PYDBAPI-10 User Guide Delivery and Viewability\n* PYDBAPI-11 Searchability\n\n`16.20.0.11` - Aug 8, 2018\n* Documentation change\n\n`16.20.0.10` - Aug 8, 2018\n* Documentation change\n\n`16.20.0.9` - Aug 7, 2018\n* Install documentation in teradatasql directory\n\n`16.20.0.8` - Aug 7, 2018\n* GOSQL-7 TDNEGO authentication method\n* PYDBAPI-42 Teradata Logon mechanism - TDNEGO\n\n`16.20.0.7` - Jul 30, 2018\n* GOSQL-8 Support parameter marker batch insert\n* PYDBAPI-45 Parameterized Batch Insertion using executeMany\n\n`16.20.0.6` - Jul 25, 2018\n* Thread safety for handle maps\n\n`16.20.0.5` - Jul 25, 2018\n* Removed atexit\n\n`16.20.0.4` - Jul 23, 2018\n* PYDBAPI-4 Provide Python Driver license file\n\n`16.20.0.3` - Jul 19, 2018\n* PYDBAPI-46 Accept subclasses of bytes, int, float, str as bind values\n\n`16.20.0.2` - Jul 19, 2018\n* Package attributes change\n\n`16.20.0.1` - Jul 18, 2018\n* Version number change\n\n`16.20.0.0` - Jul 18, 2018\n* GOSQL-1 Encrypted logon\n* GOSQL-2 LDAP and Kerberos authentication\n* GOSQL-3 Support for 1MB Rows\n* GOSQL-6 Elicit File protocol\n* PYDBAPI-1 Distribution\n* PYDBAPI-5 cursor.execute method return cursor\n* PYDBAPI-6 Install and Deployment\n* PYDBAPI-7 pip install of python driver package\n* PYDBAPI-13 Operating System Platforms\n* PYDBAPI-14 Driver must be available for use by Windows OS Users\n* PYDBAPI-15 Driver must be available for use by OSX (Mac) Users\n* PYDBAPI-16 Driver must be available for use by Linux OS Users\n* PYDBAPI-17 Python Language version\n* PYDBAPI-18 Python language version 3.4\n* PYDBAPI-19 Distribution\n* PYDBAPI-23 Teradata Analytics Platform Interoperability/Support\n* PYDBAPI-24 Works with Teradata Database 16.10, 16.20\n* PYDBAPI-26 Teradata Logon mechanism - Kerberos\n* PYDBAPI-32 Downloadable from pypi.org\n* PYDBAPI-40 Teradata Logon mechanism - LDAP\n* PYDBAPI-41 Teradata Logon mechanism - TD2\n* PYDBAPI-43 parameterized single-row inserts\n* PYDBAPI-44 parameterized queries\n\n\n",
"description_content_type": "text/markdown",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://www.teradata.com/",
"keywords": "Teradata",
"license": "Teradata License Agreement",
"maintainer": "",
"maintainer_email": "",
"name": "teradatasql",
"package_url": "https://pypi.org/project/teradatasql/",
"platform": "Windows",
"project_url": "https://pypi.org/project/teradatasql/",
"project_urls": {
"Homepage": "http://www.teradata.com/"
},
"release_url": "https://pypi.org/project/teradatasql/16.20.0.52/",
"requires_dist": [
"pycryptodome"
],
"requires_python": ">=3.4",
"summary": "Teradata SQL Driver for Python",
"version": "16.20.0.52"
},
"last_serial": 5997537,
"releases": {
"16.20.0.0": [
{
"comment_text": "",
"digests": {
"md5": "3d05c0e14b5830d5bb21f5298f93076e",
"sha256": "aa8ee1f9f1a31a1133e439d68e3bb449b3379b3f5ccd615e7b03c34cb80ce477"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3d05c0e14b5830d5bb21f5298f93076e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12096792,
"upload_time": "2018-07-18T20:50:29",
"url": "https://files.pythonhosted.org/packages/59/96/76a2b1e186619ad297d16f366378ec9cac43251ee12d4020f47504e15353/teradatasql-16.20.0.0-py3-none-any.whl"
}
],
"16.20.0.1": [
{
"comment_text": "",
"digests": {
"md5": "9ea15c5e8c3c69820a1969f35a9f7b80",
"sha256": "59d521a5da482bab61214cefec71de023a6b2ea578d215986a0e3619a3ec1d87"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9ea15c5e8c3c69820a1969f35a9f7b80",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12095646,
"upload_time": "2018-07-18T23:52:22",
"url": "https://files.pythonhosted.org/packages/44/b9/db192e7f678bba5788991918b7b6273c8290ccf1a56d1e06bd14f6dbda38/teradatasql-16.20.0.1-py3-none-any.whl"
}
],
"16.20.0.10": [
{
"comment_text": "",
"digests": {
"md5": "6859c5fefaa79eb82ff460a4a5b15bf1",
"sha256": "a3c26dafc2f23069584cecebd65912cb86c89cf3f14554d1182364c6b0381412"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.10-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6859c5fefaa79eb82ff460a4a5b15bf1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284336,
"upload_time": "2018-08-09T00:56:57",
"url": "https://files.pythonhosted.org/packages/a7/5a/3c61f6181e3d18abfd2f240321b851483f77015d608059128ffb62ba31d9/teradatasql-16.20.0.10-py3-none-any.whl"
}
],
"16.20.0.11": [
{
"comment_text": "",
"digests": {
"md5": "b958c77054d1034996f2448cb959f156",
"sha256": "67c8e1dd3b895264584bb7ca93fa63bb2c4de3f90debcdecf9ffafc271943d7b"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.11-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b958c77054d1034996f2448cb959f156",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284428,
"upload_time": "2018-08-09T01:13:37",
"url": "https://files.pythonhosted.org/packages/ba/bf/3f9a1d1b9a69b79d0d3fe0766637aa1761a7cce7a6a0879ae6e9a051b9bc/teradatasql-16.20.0.11-py3-none-any.whl"
}
],
"16.20.0.12": [
{
"comment_text": "",
"digests": {
"md5": "6c6546620e26567ceeaa99381de084ab",
"sha256": "1520f47fa971ed983b6109b45d0aecf804df711c64d4c3fc90c4eea92a85fd56"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.12-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6c6546620e26567ceeaa99381de084ab",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284563,
"upload_time": "2018-08-09T18:30:33",
"url": "https://files.pythonhosted.org/packages/b7/02/9654f2c0ff86e76c566727808f7dc0534f5dcf0f61ab76874dee348dc874/teradatasql-16.20.0.12-py3-none-any.whl"
}
],
"16.20.0.13": [
{
"comment_text": "",
"digests": {
"md5": "82891ed690e40cdd76399bddd098d673",
"sha256": "179e8dfe50884c6dc582089226cfb09fadf96825a46fb95413e59363bca9184f"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.13-py3-none-any.whl",
"has_sig": false,
"md5_digest": "82891ed690e40cdd76399bddd098d673",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284570,
"upload_time": "2018-08-09T21:53:25",
"url": "https://files.pythonhosted.org/packages/f4/f8/e45a916ef4a331dca86c88a9328098ff07ec8b7b63b6f3b48d27734e270b/teradatasql-16.20.0.13-py3-none-any.whl"
}
],
"16.20.0.14": [
{
"comment_text": "",
"digests": {
"md5": "85e0bc02b9eefb14ecc965ddd4ca68a2",
"sha256": "07070b2b851388c6bb2b6d523ae5b0b2a1b5f47cb6bf28dbbf1c989114ad58da"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "85e0bc02b9eefb14ecc965ddd4ca68a2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284572,
"upload_time": "2018-08-10T18:14:33",
"url": "https://files.pythonhosted.org/packages/70/f8/a713fd615b135a1695d6bc365b64f3e62771e94c039e1e65cb01e291bac8/teradatasql-16.20.0.14-py3-none-any.whl"
}
],
"16.20.0.15": [
{
"comment_text": "",
"digests": {
"md5": "530f2761bebc14b30a765a60f0b5e877",
"sha256": "8e618869ebc79e0f498893cf7875290569191f23876386e8ed053c21268775d8"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.15-py3-none-any.whl",
"has_sig": false,
"md5_digest": "530f2761bebc14b30a765a60f0b5e877",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12284578,
"upload_time": "2018-08-17T19:42:50",
"url": "https://files.pythonhosted.org/packages/bd/0d/b14e37179c306068c5ff0344d5b66a5c09886924af1962f1c572594d1634/teradatasql-16.20.0.15-py3-none-any.whl"
}
],
"16.20.0.16": [
{
"comment_text": "",
"digests": {
"md5": "18f46f4e7d601381d820aaed5cd380ab",
"sha256": "4b5760035e087b8036d9b0c9c9c791cb4a07e0b206b07fb944c401f5a2a0b589"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.16-py3-none-any.whl",
"has_sig": false,
"md5_digest": "18f46f4e7d601381d820aaed5cd380ab",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12281206,
"upload_time": "2018-08-17T20:16:26",
"url": "https://files.pythonhosted.org/packages/bf/9d/652c538137e421fefefa76ce15560d8281d5c88bed1b9208c8bc4c1086a1/teradatasql-16.20.0.16-py3-none-any.whl"
}
],
"16.20.0.17": [
{
"comment_text": "",
"digests": {
"md5": "f929992d8b69721b13d1de32a4620b17",
"sha256": "a0a55d5ce9811e27fbe8f422cac4dcb02e8f513c70261546a6625fbce79174b6"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.17-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f929992d8b69721b13d1de32a4620b17",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12282107,
"upload_time": "2018-08-20T23:15:36",
"url": "https://files.pythonhosted.org/packages/86/67/3ec9ac9b2a8d8adbc2a4f1fd5aa4e8264c297a2b9af6d5ffba68ec8f9d92/teradatasql-16.20.0.17-py3-none-any.whl"
}
],
"16.20.0.18": [
{
"comment_text": "",
"digests": {
"md5": "3dffd4b8b1674ec2e81a67db0644b7fc",
"sha256": "db814cffb075fe79473176e3cfb24dcb64a4fdbb3160d0d72753150065461a4a"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.18-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3dffd4b8b1674ec2e81a67db0644b7fc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12282128,
"upload_time": "2018-08-21T17:36:31",
"url": "https://files.pythonhosted.org/packages/e3/fb/8e2c5478f0dde45ec07cd0820e30c7b213ef60790e3ee285e421d4aa6b60/teradatasql-16.20.0.18-py3-none-any.whl"
}
],
"16.20.0.19": [
{
"comment_text": "",
"digests": {
"md5": "1e5463676953a405b7a7f89f9be0b657",
"sha256": "5f30eb66ea8282ad61f85616bd13c39274e0a204a5449af08e92c934f5158414"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.19-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1e5463676953a405b7a7f89f9be0b657",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12282392,
"upload_time": "2018-08-22T17:08:36",
"url": "https://files.pythonhosted.org/packages/8c/f5/9c696e8b0c77b8d3be291a92e68d5a175b8035a3fd624b30680f7366151d/teradatasql-16.20.0.19-py3-none-any.whl"
}
],
"16.20.0.2": [
{
"comment_text": "",
"digests": {
"md5": "d6c8be4173ee823011c0c79e91556eda",
"sha256": "9cbdd9cf9ef69b926baa600c226f558ac7689e77a4c1b761d84b2c538a023eea"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d6c8be4173ee823011c0c79e91556eda",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12095640,
"upload_time": "2018-07-19T16:25:38",
"url": "https://files.pythonhosted.org/packages/97/9e/23faaa05fa7d0c0286b48f9e11daccf6b05432c5a4eef517b69ff34a249b/teradatasql-16.20.0.2-py3-none-any.whl"
}
],
"16.20.0.20": [
{
"comment_text": "",
"digests": {
"md5": "f26f6bd291d43fed2606cad881cdd898",
"sha256": "5f6815db74092e3368ad515aca29dbdcd2637202b6a0917332ec69f523015cd2"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.20-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f26f6bd291d43fed2606cad881cdd898",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12318540,
"upload_time": "2018-08-28T23:22:22",
"url": "https://files.pythonhosted.org/packages/12/43/ccb446a17ccc07ec4b9b3324bec3e29a6d07cb1857905aa092408fb995a3/teradatasql-16.20.0.20-py3-none-any.whl"
}
],
"16.20.0.21": [
{
"comment_text": "",
"digests": {
"md5": "283177dddacaae7ecd6732b6a878c970",
"sha256": "9e1d6a52dad371d138f07033d27f8b3ef81352bf503e7bc1620f4126c6b7d253"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.21-py3-none-any.whl",
"has_sig": false,
"md5_digest": "283177dddacaae7ecd6732b6a878c970",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12326258,
"upload_time": "2018-08-30T01:10:23",
"url": "https://files.pythonhosted.org/packages/eb/d8/1b8221a829ce80fe5811095bbf2aeb1851eb02559903fbc686d5d96038c9/teradatasql-16.20.0.21-py3-none-any.whl"
}
],
"16.20.0.22": [
{
"comment_text": "",
"digests": {
"md5": "6ea3ed704123d8b51b366b0bbcb8be16",
"sha256": "72c43b1a77b5f7c82dc693d10255f543b6e6a1781339a2b71941f5455ddf6578"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.22-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6ea3ed704123d8b51b366b0bbcb8be16",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12326535,
"upload_time": "2018-08-31T01:20:44",
"url": "https://files.pythonhosted.org/packages/9e/30/1e31852626c0f2d17a359d7d70705f57b3730c2929588941e0c268fd7296/teradatasql-16.20.0.22-py3-none-any.whl"
}
],
"16.20.0.23": [
{
"comment_text": "",
"digests": {
"md5": "9b824607ca283e304da67a75a733b00f",
"sha256": "8c55f0d77a5d4e767a073c0873cfe1c4093046d359de176e61d0cc1a9ef4cdbf"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.23-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9b824607ca283e304da67a75a733b00f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12328272,
"upload_time": "2018-08-31T23:44:03",
"url": "https://files.pythonhosted.org/packages/97/2c/53a1f810becb4eeea0b2ad6dedc3717edb0c6e5bffb31bf96faf351452a6/teradatasql-16.20.0.23-py3-none-any.whl"
}
],
"16.20.0.24": [
{
"comment_text": "",
"digests": {
"md5": "77992e51515db252faaf1a5f608a4d7f",
"sha256": "108e70385610fabe64211489687cf96743402d60b1f37cfdc9557e0a03903067"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.24-py3-none-any.whl",
"has_sig": false,
"md5_digest": "77992e51515db252faaf1a5f608a4d7f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12337485,
"upload_time": "2018-09-06T22:01:49",
"url": "https://files.pythonhosted.org/packages/19/a6/509eaf918768d4fbd882f66181af6a0a926e369ca154f32721b75a7c2fda/teradatasql-16.20.0.24-py3-none-any.whl"
}
],
"16.20.0.25": [
{
"comment_text": "",
"digests": {
"md5": "1714dfb69b06b7a1961732f3fe07d262",
"sha256": "79550bca4df530213f7a9572af727b09557af1a14cee9673d6696f0fbe7cf4fa"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.25-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1714dfb69b06b7a1961732f3fe07d262",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12337923,
"upload_time": "2018-09-10T17:39:26",
"url": "https://files.pythonhosted.org/packages/ab/f8/f852e2a18ea569c22a2cca8098747cbbcbec264e766e49273389d364ce2e/teradatasql-16.20.0.25-py3-none-any.whl"
}
],
"16.20.0.26": [
{
"comment_text": "",
"digests": {
"md5": "67091e49e0b16b281a44cd50cfcab2da",
"sha256": "9afee2f720c6a21c5ae470bda82dfbb2f04bbf75eedde68fd8415c2a57529d8a"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.26-py3-none-any.whl",
"has_sig": false,
"md5_digest": "67091e49e0b16b281a44cd50cfcab2da",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12341596,
"upload_time": "2018-09-11T23:35:42",
"url": "https://files.pythonhosted.org/packages/97/19/36717c4ad52edc7d1dade67df0e00ebbc68c9bf2cd065c7942b5a2861ece/teradatasql-16.20.0.26-py3-none-any.whl"
}
],
"16.20.0.27": [
{
"comment_text": "",
"digests": {
"md5": "1e4582ad3405b3afc473052ead02e227",
"sha256": "2aa9a57af0230ae2a70dc90a67ffb5e958457a3f472ee9d03ba0ed6227f53df6"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.27-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1e4582ad3405b3afc473052ead02e227",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12341802,
"upload_time": "2018-09-12T17:37:00",
"url": "https://files.pythonhosted.org/packages/f8/ea/b6882b08c805976f1362e96908d2f5ff30c273fc306d83c0784dd748ea11/teradatasql-16.20.0.27-py3-none-any.whl"
}
],
"16.20.0.28": [
{
"comment_text": "",
"digests": {
"md5": "cdddd1e486bff79f1045b070547f82ad",
"sha256": "76528b2eef837d7c3e2fd8a48974c2c3ce987b12a10ed1c64f75537eac33a7e6"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.28-py3-none-any.whl",
"has_sig": false,
"md5_digest": "cdddd1e486bff79f1045b070547f82ad",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12349919,
"upload_time": "2018-09-13T20:26:06",
"url": "https://files.pythonhosted.org/packages/ac/c3/aafaf7cbbfbacdeda241af27d3df48569de7a3046e57ebafed51ced38705/teradatasql-16.20.0.28-py3-none-any.whl"
}
],
"16.20.0.29": [
{
"comment_text": "",
"digests": {
"md5": "75bd4db296b6ba3d7b37b8bcf47ab75c",
"sha256": "570dba44c689bb575e2c6b916b63f0b04c8b96c863b76b11ffb2f3cb3bd8b685"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.29-py3-none-any.whl",
"has_sig": false,
"md5_digest": "75bd4db296b6ba3d7b37b8bcf47ab75c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12351457,
"upload_time": "2018-09-14T23:25:21",
"url": "https://files.pythonhosted.org/packages/68/ca/c86c4f2d9d353804b31f82f437b75b112039f7e2adfbf31173bedca27f90/teradatasql-16.20.0.29-py3-none-any.whl"
}
],
"16.20.0.3": [
{
"comment_text": "",
"digests": {
"md5": "0570b4b1c7f0d1408e23fc4662b4c69e",
"sha256": "5c3446973f6b4021acf91daa15e3f26b594ec03ba529c485f039177018440c4e"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0570b4b1c7f0d1408e23fc4662b4c69e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12095674,
"upload_time": "2018-07-19T22:32:33",
"url": "https://files.pythonhosted.org/packages/97/0e/d0556f7bcbc9dd027aed9f2f68cda2ee83565a6f6e36d299e5026ac1387c/teradatasql-16.20.0.3-py3-none-any.whl"
}
],
"16.20.0.30": [
{
"comment_text": "",
"digests": {
"md5": "34e45c6446e586f6af7e9405a5a58560",
"sha256": "2b439a4886c5bd9202e946d58451cec2b5b804e2118169de58c6c6cfe07026c1"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.30-py3-none-any.whl",
"has_sig": false,
"md5_digest": "34e45c6446e586f6af7e9405a5a58560",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12351458,
"upload_time": "2018-09-15T02:31:15",
"url": "https://files.pythonhosted.org/packages/24/e9/6b395ab50c0e95def546b09736c38a712e04599fc8c520834260e6aa8cf8/teradatasql-16.20.0.30-py3-none-any.whl"
}
],
"16.20.0.31": [
{
"comment_text": "",
"digests": {
"md5": "c131b121531f6b2d38d343d52a71a246",
"sha256": "97468ab7a5eafe6e8a7ed25ad5e4ee9fc78f0f6df4a9a822b50d8d042121a660"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.31-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c131b121531f6b2d38d343d52a71a246",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12351718,
"upload_time": "2018-09-19T19:09:57",
"url": "https://files.pythonhosted.org/packages/48/0e/366dbadfc4375d86ccb0e266da1d4d0cdbec78bf6b9a140d9ce7c6d92579/teradatasql-16.20.0.31-py3-none-any.whl"
}
],
"16.20.0.32": [
{
"comment_text": "",
"digests": {
"md5": "384ce98083f986ee70f3d5eb968b30ac",
"sha256": "b451843aa208991695bca3695a3c21e19a68ca1456dc108e2fcb8f2ec2c76bc1"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.32-py3-none-any.whl",
"has_sig": false,
"md5_digest": "384ce98083f986ee70f3d5eb968b30ac",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12357840,
"upload_time": "2018-09-19T22:53:58",
"url": "https://files.pythonhosted.org/packages/23/5c/0e77c1c3445d581a0957f4259a50b361f9d5fcbb5c417327939bc265b725/teradatasql-16.20.0.32-py3-none-any.whl"
}
],
"16.20.0.33": [
{
"comment_text": "",
"digests": {
"md5": "b648091785c00a3165d53a55dd9ab9de",
"sha256": "80485c1ed093c8936924f96264434ab0135c8e9877123b110add820af199a8f3"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.33-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b648091785c00a3165d53a55dd9ab9de",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12677426,
"upload_time": "2018-10-12T20:46:29",
"url": "https://files.pythonhosted.org/packages/e7/fb/d8a670c04f8da43bfe7099a82a2810e3c9a8cf6c41cf209799314bbf22d1/teradatasql-16.20.0.33-py3-none-any.whl"
}
],
"16.20.0.34": [
{
"comment_text": "",
"digests": {
"md5": "ebee985efb4da66a221b1cc695c60c0e",
"sha256": "84c6fba789f348a236baf2cffc8bc946badd2725bdd9f28c14d5949f72868bd6"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.34-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ebee985efb4da66a221b1cc695c60c0e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12677445,
"upload_time": "2018-10-15T16:50:42",
"url": "https://files.pythonhosted.org/packages/92/5b/64f48c4f6e381acb7ad33e4a67c04dc894f4496782f0e55cd23ef3c1148d/teradatasql-16.20.0.34-py3-none-any.whl"
}
],
"16.20.0.35": [
{
"comment_text": "",
"digests": {
"md5": "f5670d3af76d2231642471ee3c68436e",
"sha256": "9600916934ec6950d8c393bb4dafd98537c0e22de3a79baecf395bdb0d822326"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.35-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f5670d3af76d2231642471ee3c68436e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12684497,
"upload_time": "2018-10-22T18:27:36",
"url": "https://files.pythonhosted.org/packages/92/76/130cbe40f41f8190d32e04318135875ed88209722585c12d5e603a47cc13/teradatasql-16.20.0.35-py3-none-any.whl"
}
],
"16.20.0.36": [
{
"comment_text": "",
"digests": {
"md5": "f0ccc0c43f11a9c8f307443225cc0ba3",
"sha256": "7cca9c500ac084b607bf34c102a38189fb5f579c31d13b425053a8c2312508ef"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.36-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f0ccc0c43f11a9c8f307443225cc0ba3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12697448,
"upload_time": "2018-10-22T21:00:43",
"url": "https://files.pythonhosted.org/packages/b9/6b/72bad720ac138ab04f2ba0ce4517e633666d02e920b3c138fc2cf4eba506/teradatasql-16.20.0.36-py3-none-any.whl"
}
],
"16.20.0.37": [
{
"comment_text": "",
"digests": {
"md5": "ea9086297a2799ecc661302f16d19158",
"sha256": "1b2f4fba83989fb6111c5337e139ea8242ae756aa8426654497871804dbf4d64"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.37-py3-none-any.whl",
"has_sig": false,
"md5_digest": "ea9086297a2799ecc661302f16d19158",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12697410,
"upload_time": "2018-10-22T21:07:49",
"url": "https://files.pythonhosted.org/packages/7c/a3/b831d3c2d467482f67cbda268608362d0b0d1f2204887077d27c24112c50/teradatasql-16.20.0.37-py3-none-any.whl"
}
],
"16.20.0.38": [
{
"comment_text": "",
"digests": {
"md5": "cbb4810494fde4d87820156131158207",
"sha256": "1f7da6b751837f0ba625c6cd53b43fa63d752fb68548ca6b3b81421f2ff5cb9c"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.38-py3-none-any.whl",
"has_sig": false,
"md5_digest": "cbb4810494fde4d87820156131158207",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12697735,
"upload_time": "2018-10-25T23:05:34",
"url": "https://files.pythonhosted.org/packages/a9/29/43afb874e4eb026c736093fc427cb7376d0a68a392e1d22c815768d5925a/teradatasql-16.20.0.38-py3-none-any.whl"
}
],
"16.20.0.39": [
{
"comment_text": "",
"digests": {
"md5": "b22327db550493e552908939bebc65fe",
"sha256": "6c1fac30da348879f67e74078eccfebf78631bde4f6f4d7acb0763dd17146cc0"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.39-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b22327db550493e552908939bebc65fe",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12699333,
"upload_time": "2018-10-26T22:37:26",
"url": "https://files.pythonhosted.org/packages/b1/0f/11f18838b2e16f7f9562199bd6bc4ab63f740861225ed66a0a901f3e98a3/teradatasql-16.20.0.39-py3-none-any.whl"
}
],
"16.20.0.4": [
{
"comment_text": "",
"digests": {
"md5": "75214c4d5cfda16a166bcecf02a0628c",
"sha256": "cce8f7c92edaa363f5409ba596589dbd875bd7054aba7936f196cbaf2d500402"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "75214c4d5cfda16a166bcecf02a0628c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12104298,
"upload_time": "2018-07-23T20:07:17",
"url": "https://files.pythonhosted.org/packages/27/86/8a04a47991f454c10015091f62b0775c4a670c57334468b3ff9876120b0b/teradatasql-16.20.0.4-py3-none-any.whl"
}
],
"16.20.0.40": [
{
"comment_text": "",
"digests": {
"md5": "566f325aa64290d117036bcb42627fce",
"sha256": "e3d0ac7280ee4f030e2c7bbe663f2512aa16bcd4f85d177e2d907ab30f95951b"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.40-py3-none-any.whl",
"has_sig": false,
"md5_digest": "566f325aa64290d117036bcb42627fce",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12894862,
"upload_time": "2019-02-08T20:18:53",
"url": "https://files.pythonhosted.org/packages/27/ba/42d846eb1210dedfcd131a789299112748f6052a97172920f47e326f5a46/teradatasql-16.20.0.40-py3-none-any.whl"
}
],
"16.20.0.41": [
{
"comment_text": "",
"digests": {
"md5": "b332fc503d3d9f2891390748f8ee2c2b",
"sha256": "56162a16a0be764ebfbc8120a1b4d3215eaaa6d15c8ef55f17c1a5fc15debd9f"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.41-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b332fc503d3d9f2891390748f8ee2c2b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12899624,
"upload_time": "2019-02-15T01:57:18",
"url": "https://files.pythonhosted.org/packages/ca/11/450ec55881d9b17ab999839214a26a006111ce3929b95f275a4f4ab4a349/teradatasql-16.20.0.41-py3-none-any.whl"
}
],
"16.20.0.42": [
{
"comment_text": "",
"digests": {
"md5": "3ed9e53011956552a5bf3ddab5236216",
"sha256": "ae354912c2e81eb51388b14cdf4ae2f11b65c51ccb528cad518802a197474195"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.42-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3ed9e53011956552a5bf3ddab5236216",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12981299,
"upload_time": "2019-06-07T17:19:49",
"url": "https://files.pythonhosted.org/packages/a0/80/4c8e421583a82795ac613b5bcc98d2fd37142a76a92d31c3aabed0f4a06f/teradatasql-16.20.0.42-py3-none-any.whl"
}
],
"16.20.0.43": [
{
"comment_text": "",
"digests": {
"md5": "9b2e83135bbda08b31c4ace10d84a495",
"sha256": "233145d8266adf5bed9ff164f73661f400f21a94a815207e4b72ccc537a042a6"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.43-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9b2e83135bbda08b31c4ace10d84a495",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 12983056,
"upload_time": "2019-07-29T21:59:43",
"url": "https://files.pythonhosted.org/packages/ca/7a/dae96c467ed4be1a5340d7caee74010a7eed0e333d91321f0d888720295d/teradatasql-16.20.0.43-py3-none-any.whl"
}
],
"16.20.0.44": [
{
"comment_text": "",
"digests": {
"md5": "c30a8e67d2761e9cc71e7d6c5ee88072",
"sha256": "4c9ef72ff6dbf1b168d064a8167a3af9b0a75150f259bd4131a770b899f828f5"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.44-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c30a8e67d2761e9cc71e7d6c5ee88072",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13018925,
"upload_time": "2019-08-07T20:43:39",
"url": "https://files.pythonhosted.org/packages/cc/08/3035d6a121bde23895803db936616c2ebcce187ed6ec750a1dd87f55941c/teradatasql-16.20.0.44-py3-none-any.whl"
}
],
"16.20.0.45": [
{
"comment_text": "",
"digests": {
"md5": "b0730bd08778f8d0ab79b103f0fc3281",
"sha256": "accccc04c312b9aaa2961703f6f634eedcfff9c50ce2df2d3d56825ccbe72f2e"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.45-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b0730bd08778f8d0ab79b103f0fc3281",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13020826,
"upload_time": "2019-08-12T22:36:35",
"url": "https://files.pythonhosted.org/packages/7d/7b/65534d49f393ccf6c5fdfeaa371d7731f6ca448bd2c2c1e378cff0019e35/teradatasql-16.20.0.45-py3-none-any.whl"
}
],
"16.20.0.46": [
{
"comment_text": "",
"digests": {
"md5": "a137ba0dbd1376d7699164f889eb6290",
"sha256": "6cb7bef8af0d45c9edea5b4776b1a736975766733753afb121e39531c04d6e9e"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.46-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a137ba0dbd1376d7699164f889eb6290",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13018293,
"upload_time": "2019-08-16T22:02:47",
"url": "https://files.pythonhosted.org/packages/bf/90/bb9ace6a3454cb19ff721dd16a52cd28b81210280111d75aee8a6fc14bf5/teradatasql-16.20.0.46-py3-none-any.whl"
}
],
"16.20.0.47": [
{
"comment_text": "",
"digests": {
"md5": "c5edc3daa2977818d4a3c10cd02a2ac6",
"sha256": "3d0a78690212ce047015b56ac5d9c0c420c2e9a1868d4613c97cd7424d555c78"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.47-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c5edc3daa2977818d4a3c10cd02a2ac6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13023533,
"upload_time": "2019-08-27T17:40:49",
"url": "https://files.pythonhosted.org/packages/de/9b/166f81afbd912d853060ba935a020f6d26474ebd79b995272dc19a12ff94/teradatasql-16.20.0.47-py3-none-any.whl"
}
],
"16.20.0.48": [
{
"comment_text": "",
"digests": {
"md5": "1ef0479570e8568fd3f9a7d22a92fe69",
"sha256": "40aaafd585ba79e61801ed4bf3a985b8bc4063bfa4aa573b76b0d3881ba60f95"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.48-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1ef0479570e8568fd3f9a7d22a92fe69",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13239544,
"upload_time": "2019-09-07T04:51:49",
"url": "https://files.pythonhosted.org/packages/6e/e2/d40d39f7ffb11469e626d6a74f6f5f42c5204221ea97df279e80ac989a26/teradatasql-16.20.0.48-py3-none-any.whl"
}
],
"16.20.0.49": [
{
"comment_text": "",
"digests": {
"md5": "cdfcaee496474bdd2b295ae2a81a340a",
"sha256": "73d35e82c3752610b9d6e30ad12faa3ddc631668b1f6cc0d58b94bf312400d81"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.49-py3-none-any.whl",
"has_sig": false,
"md5_digest": "cdfcaee496474bdd2b295ae2a81a340a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13242012,
"upload_time": "2019-10-03T18:49:30",
"url": "https://files.pythonhosted.org/packages/02/ec/fe7237bd3f483df7a6c2260502090a9a67e00d4d335a31cda471fd806b8d/teradatasql-16.20.0.49-py3-none-any.whl"
}
],
"16.20.0.5": [
{
"comment_text": "",
"digests": {
"md5": "8df4ba4c3c45f36863a3fb5e249056d4",
"sha256": "cb5452bf33b0350537608661059258e7d6dc44cdadf0d385489db26628212439"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "8df4ba4c3c45f36863a3fb5e249056d4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12104250,
"upload_time": "2018-07-25T13:52:39",
"url": "https://files.pythonhosted.org/packages/ed/98/357b0abc213c9eef607cb843a88c0244c31c979a7f205b33b43bffabd0f5/teradatasql-16.20.0.5-py3-none-any.whl"
}
],
"16.20.0.50": [
{
"comment_text": "",
"digests": {
"md5": "867e865c9ab720b24ecf557f17a7d22e",
"sha256": "2ed7eac296b859d0d992098bc45907a2002ad45953acb1b1c01c66906b4ce090"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.50-py3-none-any.whl",
"has_sig": false,
"md5_digest": "867e865c9ab720b24ecf557f17a7d22e",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13243205,
"upload_time": "2019-10-07T22:56:28",
"url": "https://files.pythonhosted.org/packages/7e/97/ee4545d0173a5f82781761c88c79cdd9c034eefab719a9b5ad955ea9a8d7/teradatasql-16.20.0.50-py3-none-any.whl"
}
],
"16.20.0.51": [
{
"comment_text": "",
"digests": {
"md5": "e2d7b88775b61c3e32f85f2166a4770c",
"sha256": "bd851377d44290a9dcdd07d6559afa69e8d7ff980cc066640d4743a80ccd24bf"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.51-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e2d7b88775b61c3e32f85f2166a4770c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13243098,
"upload_time": "2019-10-16T21:49:02",
"url": "https://files.pythonhosted.org/packages/99/a8/560ee49a898f5e960e367b30dc84c510ec2430f170f5496da374ea26c960/teradatasql-16.20.0.51-py3-none-any.whl"
}
],
"16.20.0.52": [
{
"comment_text": "",
"digests": {
"md5": "5f6955a1b746285037ba5b41a7f7d739",
"sha256": "7973233a153be50649c1d92c14a7951bb67fd2ffceac824ce761815ddc9e0e75"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.52-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5f6955a1b746285037ba5b41a7f7d739",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13245072,
"upload_time": "2019-10-18T21:05:46",
"url": "https://files.pythonhosted.org/packages/5c/ae/35b996fafa463639e0cf80192520e334a95e051013d108567c02fccbfac0/teradatasql-16.20.0.52-py3-none-any.whl"
}
],
"16.20.0.6": [
{
"comment_text": "",
"digests": {
"md5": "a7ab3c13156ad395307eca3e0d063c87",
"sha256": "b2595aa3b95a6aae2660b95a68f970551d09b8ebb7f5546ff2d11be0a9b191db"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a7ab3c13156ad395307eca3e0d063c87",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12101782,
"upload_time": "2018-07-25T21:54:11",
"url": "https://files.pythonhosted.org/packages/04/8f/753f52b4081fafc5583a966c7e47a15741ffd6903c39928d55c0b90e5662/teradatasql-16.20.0.6-py3-none-any.whl"
}
],
"16.20.0.7": [
{
"comment_text": "",
"digests": {
"md5": "5862e4c6167ac030cd2de3fdd4875c2b",
"sha256": "d028aa31f0b86b3db53ad285d6491a9a5d2f9b2db5c601d22369cc5798bd3341"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5862e4c6167ac030cd2de3fdd4875c2b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12165992,
"upload_time": "2018-07-30T19:24:46",
"url": "https://files.pythonhosted.org/packages/82/ad/10046d6be9843d9417273174b4f1ae5285d36a2eb6917673388330c2ef06/teradatasql-16.20.0.7-py3-none-any.whl"
}
],
"16.20.0.8": [
{
"comment_text": "",
"digests": {
"md5": "f2df9ca6b57cafbf2fcc69cfa8045ef0",
"sha256": "2d78a07f540afd827ee7769daddf8ba582514d1a64062dcbbb3cfa02deb9e85b"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.8-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f2df9ca6b57cafbf2fcc69cfa8045ef0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12277895,
"upload_time": "2018-08-07T20:58:55",
"url": "https://files.pythonhosted.org/packages/4c/9a/771c0e69be12fe9ffded252b4a33b84529d6958c1a96c0d45665623b505e/teradatasql-16.20.0.8-py3-none-any.whl"
}
],
"16.20.0.9": [
{
"comment_text": "",
"digests": {
"md5": "79c42b7dbf9b77b89d29371270ae40f3",
"sha256": "95a61d91f9e140abfaed7d3fd8390e4088050ac62d1009a9a7bc0fd1e7d0bf46"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "79c42b7dbf9b77b89d29371270ae40f3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 12278445,
"upload_time": "2018-08-07T22:57:56",
"url": "https://files.pythonhosted.org/packages/c2/aa/40f8b0caa2062ae29edc7901774801be7fe657987fd1deaf41904824a049/teradatasql-16.20.0.9-py3-none-any.whl"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5f6955a1b746285037ba5b41a7f7d739",
"sha256": "7973233a153be50649c1d92c14a7951bb67fd2ffceac824ce761815ddc9e0e75"
},
"downloads": -1,
"filename": "teradatasql-16.20.0.52-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5f6955a1b746285037ba5b41a7f7d739",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.4",
"size": 13245072,
"upload_time": "2019-10-18T21:05:46",
"url": "https://files.pythonhosted.org/packages/5c/ae/35b996fafa463639e0cf80192520e334a95e051013d108567c02fccbfac0/teradatasql-16.20.0.52-py3-none-any.whl"
}
]
}