teradataml 20.0.0.5__py3-none-any.whl → 20.0.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of teradataml might be problematic. Click here for more details.
- teradataml/LICENSE-3RD-PARTY.pdf +0 -0
- teradataml/README.md +96 -0
- teradataml/_version.py +1 -1
- teradataml/analytics/analytic_function_executor.py +1 -1
- teradataml/analytics/utils.py +56 -11
- teradataml/clients/auth_client.py +10 -6
- teradataml/clients/keycloak_client.py +165 -0
- teradataml/common/constants.py +10 -0
- teradataml/common/exceptions.py +32 -0
- teradataml/common/messagecodes.py +27 -0
- teradataml/common/messages.py +9 -1
- teradataml/common/sqlbundle.py +3 -2
- teradataml/common/utils.py +94 -12
- teradataml/context/context.py +37 -9
- teradataml/data/jsons/byom/onnxembeddings.json +1 -0
- teradataml/data/pattern_matching_data.csv +11 -0
- teradataml/data/sdk/modelops/modelops_spec.json +101737 -0
- teradataml/data/teradataml_example.json +8 -1
- teradataml/data/url_data.csv +10 -9
- teradataml/dataframe/copy_to.py +1 -1
- teradataml/dataframe/dataframe.py +980 -82
- teradataml/dataframe/dataframe_utils.py +58 -25
- teradataml/dataframe/functions.py +962 -1
- teradataml/dataframe/sql.py +570 -1031
- teradataml/hyperparameter_tuner/utils.py +4 -2
- teradataml/lib/aed_0_1.dll +0 -0
- teradataml/opensource/_base.py +7 -1
- teradataml/options/configure.py +20 -4
- teradataml/scriptmgmt/UserEnv.py +13 -2
- teradataml/scriptmgmt/lls_utils.py +99 -24
- teradataml/sdk/README.md +79 -0
- teradataml/sdk/__init__.py +4 -0
- teradataml/sdk/_auth_modes.py +422 -0
- teradataml/sdk/_func_params.py +487 -0
- teradataml/sdk/_json_parser.py +453 -0
- teradataml/sdk/_openapi_spec_constants.py +249 -0
- teradataml/sdk/_utils.py +236 -0
- teradataml/sdk/api_client.py +897 -0
- teradataml/sdk/constants.py +62 -0
- teradataml/sdk/modelops/__init__.py +98 -0
- teradataml/sdk/modelops/_client.py +406 -0
- teradataml/sdk/modelops/_constants.py +304 -0
- teradataml/sdk/modelops/models.py +2308 -0
- teradataml/sdk/spinner.py +107 -0
- teradataml/table_operators/query_generator.py +4 -21
- teradataml/utils/dtypes.py +2 -1
- teradataml/utils/utils.py +0 -1
- teradataml/utils/validators.py +5 -1
- {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/METADATA +101 -2
- {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/RECORD +53 -36
- {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/WHEEL +0 -0
- {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/top_level.txt +0 -0
- {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/zip-safe +0 -0
|
@@ -1371,7 +1371,8 @@
|
|
|
1371
1371
|
"url_data": {
|
|
1372
1372
|
"id": "INTEGER",
|
|
1373
1373
|
"urls": "VARCHAR(60)",
|
|
1374
|
-
"part": "VARCHAR(20)"
|
|
1374
|
+
"part": "VARCHAR(20)",
|
|
1375
|
+
"query_key": "VARCHAR(20)"
|
|
1375
1376
|
},
|
|
1376
1377
|
"hnsw_data": {
|
|
1377
1378
|
"id": "INTEGER",
|
|
@@ -1389,5 +1390,11 @@
|
|
|
1389
1390
|
"int_format": "VARCHAR(20)",
|
|
1390
1391
|
"float_format": "VARCHAR(20)",
|
|
1391
1392
|
"date_format": "VARCHAR(20)"
|
|
1393
|
+
},
|
|
1394
|
+
"pattern_matching_data":{
|
|
1395
|
+
"id": "INTEGER",
|
|
1396
|
+
"data": "VARCHAR(20)",
|
|
1397
|
+
"pattern": "VARCHAR(20)",
|
|
1398
|
+
"level": "VARCHAR(20)"
|
|
1392
1399
|
}
|
|
1393
1400
|
}
|
teradataml/data/url_data.csv
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
"id","urls","part"
|
|
2
|
-
0,"http://example.com:8080/path","FILE"
|
|
3
|
-
1,"ftp://example.net:21/path","PATH"
|
|
4
|
-
2,"https://example.net/path4/path5/path6?query4=value4#fragment3","REF"
|
|
5
|
-
3,"https://www.facebook.com","HOST"
|
|
6
|
-
4,"https://teracloud-pod-services-pod-account-service.dummyvalue.production.pods.teracloud.ninja/v1/accounts/acc-dummyvalue/user-environment-service/api/v1/","QUERY"
|
|
7
|
-
5,"http://pg.example.ml/path150#fragment90","AUTHORITY"
|
|
8
|
-
6,"smtp://user:password@smtp.example.com:21/file.txt","USERINFO"
|
|
9
|
-
7,"https://www.google.com","PROTOCOL"
|
|
1
|
+
"id","urls","part","query_key"
|
|
2
|
+
0,"http://example.com:8080/path","FILE","path"
|
|
3
|
+
1,"ftp://example.net:21/path","PATH","path"
|
|
4
|
+
2,"https://example.net/path4/path5/path6?query4=value4#fragment3","REF","fragment3"
|
|
5
|
+
3,"https://www.facebook.com","HOST","facebook.com"
|
|
6
|
+
4,"https://teracloud-pod-services-pod-account-service.dummyvalue.production.pods.teracloud.ninja/v1/accounts/acc-dummyvalue/user-environment-service/api/v1/","QUERY",None
|
|
7
|
+
5,"http://pg.example.ml/path150#fragment90","AUTHORITY","fragment90"
|
|
8
|
+
6,"smtp://user:password@smtp.example.com:21/file.txt","USERINFO","password"
|
|
9
|
+
7,"https://www.google.com","PROTOCOL","google.com"
|
|
10
|
+
8,"http://example.com/api?query1=value1&query2=value2","QUERY","query1"
|
teradataml/dataframe/copy_to.py
CHANGED
|
@@ -131,7 +131,7 @@ def copy_to_sql(df, table_name,
|
|
|
131
131
|
|
|
132
132
|
types
|
|
133
133
|
Optional Argument.
|
|
134
|
-
Specifies required data
|
|
134
|
+
Specifies required data types for requested columns to be saved in Teradata Vantage.
|
|
135
135
|
Types: Python dictionary ({column_name1: type_value1, ... column_nameN: type_valueN})
|
|
136
136
|
Default: None
|
|
137
137
|
|