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.

Files changed (53) hide show
  1. teradataml/LICENSE-3RD-PARTY.pdf +0 -0
  2. teradataml/README.md +96 -0
  3. teradataml/_version.py +1 -1
  4. teradataml/analytics/analytic_function_executor.py +1 -1
  5. teradataml/analytics/utils.py +56 -11
  6. teradataml/clients/auth_client.py +10 -6
  7. teradataml/clients/keycloak_client.py +165 -0
  8. teradataml/common/constants.py +10 -0
  9. teradataml/common/exceptions.py +32 -0
  10. teradataml/common/messagecodes.py +27 -0
  11. teradataml/common/messages.py +9 -1
  12. teradataml/common/sqlbundle.py +3 -2
  13. teradataml/common/utils.py +94 -12
  14. teradataml/context/context.py +37 -9
  15. teradataml/data/jsons/byom/onnxembeddings.json +1 -0
  16. teradataml/data/pattern_matching_data.csv +11 -0
  17. teradataml/data/sdk/modelops/modelops_spec.json +101737 -0
  18. teradataml/data/teradataml_example.json +8 -1
  19. teradataml/data/url_data.csv +10 -9
  20. teradataml/dataframe/copy_to.py +1 -1
  21. teradataml/dataframe/dataframe.py +980 -82
  22. teradataml/dataframe/dataframe_utils.py +58 -25
  23. teradataml/dataframe/functions.py +962 -1
  24. teradataml/dataframe/sql.py +570 -1031
  25. teradataml/hyperparameter_tuner/utils.py +4 -2
  26. teradataml/lib/aed_0_1.dll +0 -0
  27. teradataml/opensource/_base.py +7 -1
  28. teradataml/options/configure.py +20 -4
  29. teradataml/scriptmgmt/UserEnv.py +13 -2
  30. teradataml/scriptmgmt/lls_utils.py +99 -24
  31. teradataml/sdk/README.md +79 -0
  32. teradataml/sdk/__init__.py +4 -0
  33. teradataml/sdk/_auth_modes.py +422 -0
  34. teradataml/sdk/_func_params.py +487 -0
  35. teradataml/sdk/_json_parser.py +453 -0
  36. teradataml/sdk/_openapi_spec_constants.py +249 -0
  37. teradataml/sdk/_utils.py +236 -0
  38. teradataml/sdk/api_client.py +897 -0
  39. teradataml/sdk/constants.py +62 -0
  40. teradataml/sdk/modelops/__init__.py +98 -0
  41. teradataml/sdk/modelops/_client.py +406 -0
  42. teradataml/sdk/modelops/_constants.py +304 -0
  43. teradataml/sdk/modelops/models.py +2308 -0
  44. teradataml/sdk/spinner.py +107 -0
  45. teradataml/table_operators/query_generator.py +4 -21
  46. teradataml/utils/dtypes.py +2 -1
  47. teradataml/utils/utils.py +0 -1
  48. teradataml/utils/validators.py +5 -1
  49. {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/METADATA +101 -2
  50. {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/RECORD +53 -36
  51. {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/WHEEL +0 -0
  52. {teradataml-20.0.0.5.dist-info → teradataml-20.0.0.6.dist-info}/top_level.txt +0 -0
  53. {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
  }
@@ -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"
@@ -131,7 +131,7 @@ def copy_to_sql(df, table_name,
131
131
 
132
132
  types
133
133
  Optional Argument.
134
- Specifies required data-types for requested columns to be saved in Vantage.
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