tracdap-runtime 0.6.6__py3-none-any.whl → 0.7.0__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.
Files changed (86) hide show
  1. tracdap/rt/__init__.py +6 -5
  2. tracdap/rt/_exec/actors.py +6 -5
  3. tracdap/rt/_exec/context.py +6 -5
  4. tracdap/rt/_exec/dev_mode.py +6 -5
  5. tracdap/rt/_exec/engine.py +6 -5
  6. tracdap/rt/_exec/functions.py +6 -5
  7. tracdap/rt/_exec/graph.py +6 -5
  8. tracdap/rt/_exec/graph_builder.py +6 -5
  9. tracdap/rt/_exec/runtime.py +6 -5
  10. tracdap/rt/_exec/server.py +6 -5
  11. tracdap/rt/_impl/__init__.py +6 -5
  12. tracdap/rt/_impl/config_parser.py +6 -5
  13. tracdap/rt/_impl/data.py +6 -5
  14. tracdap/rt/_impl/ext/__init__.py +6 -5
  15. tracdap/rt/_impl/ext/sql.py +6 -5
  16. tracdap/rt/_impl/ext/storage.py +6 -5
  17. tracdap/rt/_impl/grpc/__init__.py +6 -5
  18. tracdap/rt/_impl/grpc/codec.py +6 -5
  19. tracdap/rt/_impl/guard_rails.py +6 -5
  20. tracdap/rt/_impl/models.py +6 -5
  21. tracdap/rt/_impl/repos.py +6 -5
  22. tracdap/rt/_impl/schemas.py +6 -5
  23. tracdap/rt/_impl/shim.py +6 -5
  24. tracdap/rt/_impl/static_api.py +6 -5
  25. tracdap/rt/_impl/storage.py +6 -5
  26. tracdap/rt/_impl/type_system.py +6 -5
  27. tracdap/rt/_impl/util.py +6 -5
  28. tracdap/rt/_impl/validation.py +6 -5
  29. tracdap/rt/_plugins/__init__.py +6 -5
  30. tracdap/rt/_plugins/_helpers.py +6 -5
  31. tracdap/rt/_plugins/config_local.py +6 -5
  32. tracdap/rt/_plugins/format_arrow.py +6 -5
  33. tracdap/rt/_plugins/format_csv.py +6 -5
  34. tracdap/rt/_plugins/format_parquet.py +6 -5
  35. tracdap/rt/_plugins/repo_git.py +6 -5
  36. tracdap/rt/_plugins/repo_local.py +6 -5
  37. tracdap/rt/_plugins/repo_pypi.py +6 -5
  38. tracdap/rt/_plugins/storage_aws.py +6 -5
  39. tracdap/rt/_plugins/storage_azure.py +6 -5
  40. tracdap/rt/_plugins/storage_gcp.py +6 -5
  41. tracdap/rt/_plugins/storage_local.py +6 -5
  42. tracdap/rt/_plugins/storage_sql.py +6 -5
  43. tracdap/rt/_plugins/storage_sql_dialects.py +6 -5
  44. tracdap/rt/_version.py +7 -6
  45. tracdap/rt/api/__init__.py +23 -5
  46. tracdap/rt/api/experimental.py +6 -5
  47. tracdap/rt/api/hook.py +6 -5
  48. tracdap/rt/api/model_api.py +110 -90
  49. tracdap/rt/api/static_api.py +142 -100
  50. tracdap/rt/config/common.py +26 -27
  51. tracdap/rt/config/job.py +5 -6
  52. tracdap/rt/config/platform.py +41 -42
  53. tracdap/rt/config/result.py +5 -6
  54. tracdap/rt/config/runtime.py +6 -7
  55. tracdap/rt/exceptions.py +13 -7
  56. tracdap/rt/ext/__init__.py +6 -5
  57. tracdap/rt/ext/config.py +6 -5
  58. tracdap/rt/ext/embed.py +6 -5
  59. tracdap/rt/ext/plugins.py +6 -5
  60. tracdap/rt/ext/repos.py +6 -5
  61. tracdap/rt/ext/storage.py +6 -5
  62. tracdap/rt/launch/__init__.py +10 -5
  63. tracdap/rt/launch/__main__.py +6 -5
  64. tracdap/rt/launch/cli.py +6 -5
  65. tracdap/rt/launch/launch.py +38 -15
  66. tracdap/rt/metadata/common.py +2 -3
  67. tracdap/rt/metadata/custom.py +3 -4
  68. tracdap/rt/metadata/data.py +30 -31
  69. tracdap/rt/metadata/file.py +6 -7
  70. tracdap/rt/metadata/flow.py +22 -23
  71. tracdap/rt/metadata/job.py +50 -51
  72. tracdap/rt/metadata/model.py +26 -27
  73. tracdap/rt/metadata/object.py +11 -12
  74. tracdap/rt/metadata/object_id.py +23 -24
  75. tracdap/rt/metadata/resource.py +0 -1
  76. tracdap/rt/metadata/search.py +15 -16
  77. tracdap/rt/metadata/stoarge.py +22 -23
  78. tracdap/rt/metadata/tag.py +8 -9
  79. tracdap/rt/metadata/tag_update.py +11 -12
  80. tracdap/rt/metadata/type.py +38 -38
  81. {tracdap_runtime-0.6.6.dist-info → tracdap_runtime-0.7.0.dist-info}/LICENSE +1 -1
  82. {tracdap_runtime-0.6.6.dist-info → tracdap_runtime-0.7.0.dist-info}/METADATA +2 -2
  83. tracdap_runtime-0.7.0.dist-info/RECORD +121 -0
  84. {tracdap_runtime-0.6.6.dist-info → tracdap_runtime-0.7.0.dist-info}/WHEEL +1 -1
  85. tracdap_runtime-0.6.6.dist-info/RECORD +0 -121
  86. {tracdap_runtime-0.6.6.dist-info → tracdap_runtime-0.7.0.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2023 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
tracdap/rt/_version.py CHANGED
@@ -1,8 +1,9 @@
1
- # Copyright 2021 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -12,4 +13,4 @@
12
13
  # See the License for the specific language governing permissions and
13
14
  # limitations under the License.
14
15
 
15
- __version__ = "0.6.6"
16
+ __version__ = "0.7.0"
@@ -1,8 +1,9 @@
1
- # Copyright 2020 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
@@ -12,6 +13,9 @@
12
13
  # See the License for the specific language governing permissions and
13
14
  # limitations under the License.
14
15
 
16
+ """
17
+ TRAC model API for Python
18
+ """
15
19
 
16
20
  from .model_api import *
17
21
  from .static_api import *
@@ -21,10 +25,24 @@ from .static_api import *
21
25
  from tracdap.rt.metadata import * # noqa DOCGEN_REMOVE
22
26
 
23
27
  # Map basic types into the root of the API package
28
+
24
29
  BOOLEAN = BasicType.BOOLEAN
30
+ """Synonym for :py:attr:`BasicType.BOOLEAN <tracdap.rt.metadata.BasicType.BOOLEAN>`"""
31
+
25
32
  INTEGER = BasicType.INTEGER
33
+ """Synonym for :py:attr:`BasicType.INTEGER <tracdap.rt.metadata.BasicType.INTEGER>`"""
34
+
26
35
  FLOAT = BasicType.FLOAT
36
+ """Synonym for :py:attr:`BasicType.FLOAT <tracdap.rt.metadata.BasicType.FLOAT>`"""
37
+
27
38
  DECIMAL = BasicType.DECIMAL
39
+ """Synonym for :py:attr:`BasicType.DECIMAL <tracdap.rt.metadata.BasicType.DECIMAL>`"""
40
+
28
41
  STRING = BasicType.STRING
42
+ """Synonym for :py:attr:`BasicType.STRING <tracdap.rt.metadata.BasicType.STRING>`"""
43
+
29
44
  DATE = BasicType.DATE
45
+ """Synonym for :py:attr:`BasicType.DATE <tracdap.rt.metadata.BasicType.DATE>`"""
46
+
30
47
  DATETIME = BasicType.DATETIME
48
+ """Synonym for :py:attr:`BasicType.DATETIME <tracdap.rt.metadata.BasicType.DATETIME>`"""
@@ -1,8 +1,9 @@
1
- # Copyright 2024 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #
tracdap/rt/api/hook.py CHANGED
@@ -1,8 +1,9 @@
1
- # Copyright 2022 Accenture Global Solutions Limited
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
1
+ # Licensed to the Fintech Open Source Foundation (FINOS) under one or
2
+ # more contributor license agreements. See the NOTICE file distributed
3
+ # with this work for additional information regarding copyright ownership.
4
+ # FINOS licenses this file to you under the Apache License, Version 2.0
5
+ # (the "License"); you may not use this file except in compliance with the
6
+ # License. You may obtain a copy of the License at
6
7
  #
7
8
  # http://www.apache.org/licenses/LICENSE-2.0
8
9
  #