another-ayx-python-sdk 2.4.23__py3-none-any.whl → 2.4.24__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 (212) hide show
  1. another_ayx_python_sdk/version.py +3 -3
  2. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/METADATA +2 -2
  3. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/RECORD +212 -7
  4. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/top_level.txt +2 -0
  5. build/lib/another_ayx_python_sdk/__init__.py +14 -0
  6. build/lib/another_ayx_python_sdk/__main__.py +470 -0
  7. build/lib/another_ayx_python_sdk/assets/workspace_files/__init__.py +14 -0
  8. build/lib/another_ayx_python_sdk/assets/workspace_files/setup.py +38 -0
  9. build/lib/another_ayx_python_sdk/cli/__init__.py +14 -0
  10. build/lib/another_ayx_python_sdk/cli/utilities.py +103 -0
  11. build/lib/another_ayx_python_sdk/cli/workspace.py +266 -0
  12. build/lib/another_ayx_python_sdk/cli/yxi_builder.py +125 -0
  13. build/lib/another_ayx_python_sdk/cli/yxi_installer.py +45 -0
  14. build/lib/another_ayx_python_sdk/core/__init__.py +51 -0
  15. build/lib/another_ayx_python_sdk/core/constants.py +25 -0
  16. build/lib/another_ayx_python_sdk/core/dcm_base.py +115 -0
  17. build/lib/another_ayx_python_sdk/core/doc_utilities.py +40 -0
  18. build/lib/another_ayx_python_sdk/core/environment_base.py +213 -0
  19. build/lib/another_ayx_python_sdk/core/exceptions.py +59 -0
  20. build/lib/another_ayx_python_sdk/core/field.py +183 -0
  21. build/lib/another_ayx_python_sdk/core/input_anchor_base.py +86 -0
  22. build/lib/another_ayx_python_sdk/core/input_connection_base.py +206 -0
  23. build/lib/another_ayx_python_sdk/core/io_base.py +139 -0
  24. build/lib/another_ayx_python_sdk/core/metadata.py +173 -0
  25. build/lib/another_ayx_python_sdk/core/observable_mixin.py +90 -0
  26. build/lib/another_ayx_python_sdk/core/output_anchor_base.py +151 -0
  27. build/lib/another_ayx_python_sdk/core/plugin.py +108 -0
  28. build/lib/another_ayx_python_sdk/core/plugin_v2.py +97 -0
  29. build/lib/another_ayx_python_sdk/core/provider_base.py +125 -0
  30. build/lib/another_ayx_python_sdk/core/proxy_requests.py +51 -0
  31. build/lib/another_ayx_python_sdk/core/record_packet.py +88 -0
  32. build/lib/another_ayx_python_sdk/core/record_packet_base.py +123 -0
  33. build/lib/another_ayx_python_sdk/core/register_plugin.py +127 -0
  34. build/lib/another_ayx_python_sdk/core/testing.py +191 -0
  35. build/lib/another_ayx_python_sdk/core/utils.py +146 -0
  36. build/lib/another_ayx_python_sdk/examples/AyxSdkInput/main.py +89 -0
  37. build/lib/another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/main.py +102 -0
  38. build/lib/another_ayx_python_sdk/examples/AyxSdkMultipleInputAnchors/main.py +84 -0
  39. build/lib/another_ayx_python_sdk/examples/AyxSdkMultipleOutputAnchors/main.py +96 -0
  40. build/lib/another_ayx_python_sdk/examples/AyxSdkOptionalInputAnchor/main.py +94 -0
  41. build/lib/another_ayx_python_sdk/examples/AyxSdkOutput/main.py +78 -0
  42. build/lib/another_ayx_python_sdk/examples/AyxSdkPassThrough/main.py +82 -0
  43. build/lib/another_ayx_python_sdk/providers/__init__.py +14 -0
  44. build/lib/another_ayx_python_sdk/providers/amp_provider/__init__.py +41 -0
  45. build/lib/another_ayx_python_sdk/providers/amp_provider/__main__.py +85 -0
  46. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_dcm.py +58 -0
  47. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_driver.py +358 -0
  48. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_environment.py +73 -0
  49. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_environment_v2.py +278 -0
  50. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_input_anchor.py +73 -0
  51. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_input_connection.py +132 -0
  52. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_io.py +64 -0
  53. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_io_components.py +407 -0
  54. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_output_anchor.py +107 -0
  55. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_provider.py +68 -0
  56. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_provider_v2.py +128 -0
  57. build/lib/another_ayx_python_sdk/providers/amp_provider/amp_record_packet.py +21 -0
  58. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/__init__.py +32 -0
  59. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/input_anchor_builder.py +123 -0
  60. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/input_connection_builder.py +95 -0
  61. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/metadata_builder.py +118 -0
  62. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/output_anchor_builder.py +110 -0
  63. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/packers.py +458 -0
  64. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/record_builder.py +204 -0
  65. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/record_packet_builder.py +133 -0
  66. build/lib/another_ayx_python_sdk/providers/amp_provider/builders/tool_config_builder.py +59 -0
  67. build/lib/another_ayx_python_sdk/providers/amp_provider/cng_certs.py +197 -0
  68. build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/__init__.py +18 -0
  69. build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/amp_transport.py +127 -0
  70. build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/transport_base.py +35 -0
  71. build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/__init__.py +14 -0
  72. build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/control_msgs.py +189 -0
  73. build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/dcme_msgs.py +119 -0
  74. build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/record_transfer_msgs.py +32 -0
  75. build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_util.py +161 -0
  76. build/lib/another_ayx_python_sdk/providers/amp_provider/logger_config.py +63 -0
  77. build/lib/another_ayx_python_sdk/providers/amp_provider/plugin_class_loader.py +77 -0
  78. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/__init__.py +67 -0
  79. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/dcm_repository.py +252 -0
  80. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/environment_repository.py +212 -0
  81. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/grpc_repository.py +119 -0
  82. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_anchor_repository.py +110 -0
  83. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_connection_repository.py +276 -0
  84. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_metadata_repository.py +144 -0
  85. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_record_packet_repository.py +252 -0
  86. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/io_repository.py +188 -0
  87. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_anchor_repository.py +117 -0
  88. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_metadata_repository.py +129 -0
  89. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_record_packet_repository.py +170 -0
  90. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/plugin_class_repository.py +55 -0
  91. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/singleton.py +32 -0
  92. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/test_harness_state_repository.py +172 -0
  93. build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/tool_config_repository.py +89 -0
  94. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/__init__.py +14 -0
  95. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/__init__.py +0 -0
  96. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/close_outgoing_anchor_pb2.py +25 -0
  97. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/close_outgoing_anchor_pb2_grpc.py +4 -0
  98. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/dcm_e_pb2.py +38 -0
  99. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/dcm_e_pb2_grpc.py +4 -0
  100. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_anchor_pb2.py +26 -0
  101. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_anchor_pb2_grpc.py +4 -0
  102. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_complete_pb2.py +25 -0
  103. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_complete_pb2_grpc.py +4 -0
  104. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_pb2.py +26 -0
  105. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_pb2_grpc.py +4 -0
  106. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_data_push_pb2.py +26 -0
  107. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_data_push_pb2_grpc.py +4 -0
  108. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_record_packet_push_pb2.py +26 -0
  109. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_record_packet_push_pb2_grpc.py +4 -0
  110. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/metadata_pb2.py +31 -0
  111. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/metadata_pb2_grpc.py +4 -0
  112. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_anchor_pb2.py +28 -0
  113. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_anchor_pb2_grpc.py +4 -0
  114. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_data_push_pb2.py +26 -0
  115. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_data_push_pb2_grpc.py +4 -0
  116. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_metadata_push_pb2.py +26 -0
  117. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_metadata_push_pb2_grpc.py +4 -0
  118. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_record_packet_push_pb2.py +26 -0
  119. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_record_packet_push_pb2_grpc.py +4 -0
  120. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/output_message_data_pb2.py +29 -0
  121. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/output_message_data_pb2_grpc.py +4 -0
  122. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/password_data_pb2.py +25 -0
  123. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/password_data_pb2_grpc.py +4 -0
  124. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/plugin_initialization_data_pb2.py +33 -0
  125. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/plugin_initialization_data_pb2_grpc.py +4 -0
  126. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_batch_pb2.py +25 -0
  127. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_batch_pb2_grpc.py +4 -0
  128. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_packet_pb2.py +29 -0
  129. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_packet_pb2_grpc.py +4 -0
  130. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_engine_service_pb2.py +34 -0
  131. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_engine_service_pb2_grpc.py +305 -0
  132. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_pb2.py +30 -0
  133. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_pb2_grpc.py +235 -0
  134. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_startup_info_pb2.py +25 -0
  135. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_startup_info_pb2_grpc.py +4 -0
  136. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_v2_pb2.py +54 -0
  137. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_v2_pb2_grpc.py +99 -0
  138. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/translate_message_data_pb2.py +27 -0
  139. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/translate_message_data_pb2_grpc.py +4 -0
  140. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/transport_pb2.py +31 -0
  141. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/transport_pb2_grpc.py +4 -0
  142. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/update_progress_pb2.py +25 -0
  143. build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/update_progress_pb2_grpc.py +4 -0
  144. build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_runner.py +115 -0
  145. build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_service.py +207 -0
  146. build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_service_v2.py +306 -0
  147. build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/__init__.py +14 -0
  148. build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/constants.py +22 -0
  149. build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/conversions.py +55 -0
  150. build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/utilities.py +63 -0
  151. build/lib/another_ayx_python_sdk/providers/e1_provider/__init__.py +36 -0
  152. build/lib/another_ayx_python_sdk/providers/e1_provider/anchor_builder.py +95 -0
  153. build/lib/another_ayx_python_sdk/providers/e1_provider/cache_e1_sdk_import.py +31 -0
  154. build/lib/another_ayx_python_sdk/providers/e1_provider/connection_callback_strategy.py +155 -0
  155. build/lib/another_ayx_python_sdk/providers/e1_provider/connection_interface.py +125 -0
  156. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_dcm.py +53 -0
  157. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_environment.py +127 -0
  158. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_anchor.py +51 -0
  159. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_anchor_proxy.py +33 -0
  160. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_connection.py +87 -0
  161. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_io.py +71 -0
  162. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_output_anchor.py +157 -0
  163. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_output_anchor_proxy.py +97 -0
  164. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_plugin_driver.py +63 -0
  165. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_plugin_proxy.py +363 -0
  166. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_provider.py +71 -0
  167. build/lib/another_ayx_python_sdk/providers/e1_provider/e1_record_packet.py +21 -0
  168. build/lib/another_ayx_python_sdk/providers/e1_provider/events.py +36 -0
  169. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/__init__.py +37 -0
  170. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/alteryx_engine.py +105 -0
  171. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/constants.py +50 -0
  172. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/field.py +122 -0
  173. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/output_anchor.py +55 -0
  174. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/output_anchor_manager.py +31 -0
  175. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_copier.py +65 -0
  176. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_creator.py +41 -0
  177. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_info.py +134 -0
  178. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_ref.py +42 -0
  179. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/tool.py +29 -0
  180. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/tool_execution_info.py +43 -0
  181. build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/__init__.py +14 -0
  182. build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/__init__.py +18 -0
  183. build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/field_proxy.py +109 -0
  184. build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/record_copier_proxy.py +49 -0
  185. build/lib/another_ayx_python_sdk/providers/e1_provider/records/__init__.py +23 -0
  186. build/lib/another_ayx_python_sdk/providers/e1_provider/records/base_record_container.py +47 -0
  187. build/lib/another_ayx_python_sdk/providers/e1_provider/records/parsed_record_container.py +67 -0
  188. build/lib/another_ayx_python_sdk/providers/e1_provider/records/raw_record_container.py +111 -0
  189. build/lib/another_ayx_python_sdk/providers/e1_provider/tool_config_loader.py +132 -0
  190. build/lib/another_ayx_python_sdk/providers/e1_provider/utilities/__init__.py +35 -0
  191. build/lib/another_ayx_python_sdk/providers/e1_provider/utilities/utilities.py +54 -0
  192. build/lib/another_ayx_python_sdk/providers/e1_provider/workflow_config.py +31 -0
  193. build/lib/another_ayx_python_sdk/providers/file_provider/__init__.py +32 -0
  194. build/lib/another_ayx_python_sdk/providers/file_provider/environment.py +131 -0
  195. build/lib/another_ayx_python_sdk/providers/file_provider/file_adapter.py +286 -0
  196. build/lib/another_ayx_python_sdk/providers/file_provider/file_provider.py +185 -0
  197. build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_dcm.py +53 -0
  198. build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_input_anchor.py +70 -0
  199. build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_input_connection.py +112 -0
  200. build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_output_anchor.py +114 -0
  201. build/lib/another_ayx_python_sdk/providers/file_provider/file_record_packet.py +21 -0
  202. build/lib/another_ayx_python_sdk/providers/file_provider/iox.py +56 -0
  203. build/lib/another_ayx_python_sdk/providers/file_provider/tool_input.py +104 -0
  204. build/lib/another_ayx_python_sdk/test_harness/__init__.py +14 -0
  205. build/lib/another_ayx_python_sdk/test_harness/__main__.py +120 -0
  206. build/lib/another_ayx_python_sdk/test_harness/plugin_runner.py +416 -0
  207. build/lib/another_ayx_python_sdk/test_harness/process_lifecycle_manager.py +80 -0
  208. build/lib/another_ayx_python_sdk/test_harness/sdk_engine_service.py +106 -0
  209. build/lib/another_ayx_python_sdk/version.py +8 -0
  210. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/WHEEL +0 -0
  211. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/entry_points.txt +0 -0
  212. {another_ayx_python_sdk-2.4.23.dist-info → another_ayx_python_sdk-2.4.24.dist-info}/licenses/LICENSE +0 -0
@@ -1,7 +1,7 @@
1
1
  """FILE GENERATED FROM SETUP.PY."""
2
- short_version = "2.4.23"
3
- version = "2.4.23"
4
- full_version = "2.4.23"
2
+ short_version = "2.4.24"
3
+ version = "2.4.24"
4
+ full_version = "2.4.24"
5
5
  release = True
6
6
 
7
7
  if not release:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: another-ayx-python-sdk
3
- Version: 2.4.23
3
+ Version: 2.4.24
4
4
  Summary: Python SDK for Alteryx Plugin Development and Testing
5
5
  Author: Jupiter Bakakeu
6
6
  Author-email: Jupiter Bakakeu <jupiter.bakakeu@gmail.com>
@@ -31,7 +31,7 @@ Requires-Dist: pyarrow
31
31
  Requires-Dist: xmltodict
32
32
  Requires-Dist: pyyaml
33
33
  Requires-Dist: requests
34
- Requires-Dist: another-ayx-plugin-cli==1.2.4
34
+ Requires-Dist: another-ayx-plugin-cli>=1.2.4
35
35
  Requires-Dist: typing-extensions
36
36
  Requires-Dist: pypac
37
37
  Requires-Dist: pandas
@@ -1,6 +1,6 @@
1
1
  another_ayx_python_sdk/__init__.py,sha256=rW_9jQFFsVtSstJyG_mC133azLPSahYsQNjBO2wGbvE,666
2
2
  another_ayx_python_sdk/__main__.py,sha256=mC0eQDRp4eYQ0nE1XMFhjnzz3JScvN2sZVaNTxxn-XU,15702
3
- another_ayx_python_sdk/version.py,sha256=NXIiQ9dvWd61u_lRjLg7h4xauc-ldAUjKcUmA1qm3rc,163
3
+ another_ayx_python_sdk/version.py,sha256=ugPcljtvPnBctSZ3-J5J7327BDpTHQ9m_psCaNIybqY,163
4
4
  another_ayx_python_sdk/assets/workspace_files/__init__.py,sha256=_B9-372ZW6ePlxj3OqOdbC4Pm0bnsxO_1p0LQO5u2XI,661
5
5
  another_ayx_python_sdk/assets/workspace_files/setup.py,sha256=WNhM036Hw3i7upZ7sNeTv0i-f-MkOAViP6X6T2b055M,1250
6
6
  another_ayx_python_sdk/cli/__init__.py,sha256=P_f8aZgkOMG8ipVYsJgHT_KZDzrGe7VJ3sjX84HR_rI,656
@@ -395,9 +395,214 @@ another_ayx_python_sdk/test_harness/__pycache__/__main__.cpython-310.pyc,sha256=
395
395
  another_ayx_python_sdk/test_harness/__pycache__/plugin_runner.cpython-310.pyc,sha256=x1mnw7Fe0mLWImALcMBxe_9bbLtClkDoMORGigyOl6k,12315
396
396
  another_ayx_python_sdk/test_harness/__pycache__/process_lifecycle_manager.cpython-310.pyc,sha256=Tbh8cz3wbDSa-MVPpWfglkewGlmEedgs4pDMEU6pR90,2766
397
397
  another_ayx_python_sdk/test_harness/__pycache__/sdk_engine_service.cpython-310.pyc,sha256=PD6MeaHo-E9_Y5pYGXmHV622isQXQdrAScVpRs9S6EY,3878
398
- another_ayx_python_sdk-2.4.23.dist-info/licenses/LICENSE,sha256=idX7EpV9wC_oqjijMHjcA6svWNkQJBUr_ZoV2WtRegU,1092
399
- another_ayx_python_sdk-2.4.23.dist-info/METADATA,sha256=O3kQEZcwx60yEKQ43jblNt0bzj1lgptiGHg6XI5l62U,2191
400
- another_ayx_python_sdk-2.4.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
401
- another_ayx_python_sdk-2.4.23.dist-info/entry_points.txt,sha256=NqVRYuHblqbm6riofdadL-81b6QzS31HgSTiNGyrmU0,80
402
- another_ayx_python_sdk-2.4.23.dist-info/top_level.txt,sha256=uervU294PnXXmasUBpVYCnJglldB2hUIUzEDrtSxX5I,23
403
- another_ayx_python_sdk-2.4.23.dist-info/RECORD,,
398
+ another_ayx_python_sdk-2.4.24.dist-info/licenses/LICENSE,sha256=idX7EpV9wC_oqjijMHjcA6svWNkQJBUr_ZoV2WtRegU,1092
399
+ build/lib/another_ayx_python_sdk/__init__.py,sha256=rW_9jQFFsVtSstJyG_mC133azLPSahYsQNjBO2wGbvE,666
400
+ build/lib/another_ayx_python_sdk/__main__.py,sha256=mC0eQDRp4eYQ0nE1XMFhjnzz3JScvN2sZVaNTxxn-XU,15702
401
+ build/lib/another_ayx_python_sdk/version.py,sha256=ugPcljtvPnBctSZ3-J5J7327BDpTHQ9m_psCaNIybqY,163
402
+ build/lib/another_ayx_python_sdk/assets/workspace_files/__init__.py,sha256=_B9-372ZW6ePlxj3OqOdbC4Pm0bnsxO_1p0LQO5u2XI,661
403
+ build/lib/another_ayx_python_sdk/assets/workspace_files/setup.py,sha256=WNhM036Hw3i7upZ7sNeTv0i-f-MkOAViP6X6T2b055M,1250
404
+ build/lib/another_ayx_python_sdk/cli/__init__.py,sha256=P_f8aZgkOMG8ipVYsJgHT_KZDzrGe7VJ3sjX84HR_rI,656
405
+ build/lib/another_ayx_python_sdk/cli/utilities.py,sha256=m7wZzB8uuSLLKADyDGuywtAz5hoRqJIlrY83pcbUjBY,3787
406
+ build/lib/another_ayx_python_sdk/cli/workspace.py,sha256=MOVZKDLejy-oWA4ffuI-zlbFzEcrP9zumwQNZbQjaDI,9559
407
+ build/lib/another_ayx_python_sdk/cli/yxi_builder.py,sha256=3pEW6yJy3Q-kGwexGb4eb6jawtjAkxGPW9aaoCXP1zM,4471
408
+ build/lib/another_ayx_python_sdk/cli/yxi_installer.py,sha256=epagAWqHpCJe7wIUlXJQf0u7D1Ja8G42RgztXYgaIrg,1672
409
+ build/lib/another_ayx_python_sdk/core/__init__.py,sha256=1TrG2_1WLoOA6z1Srlii9O_uCCf_rM5UeiXvfe2EMUk,1657
410
+ build/lib/another_ayx_python_sdk/core/constants.py,sha256=6u8tTNLThCgxtXPndVna24OjxwURk4hZqkDtq41BVE0,959
411
+ build/lib/another_ayx_python_sdk/core/dcm_base.py,sha256=YPAqYh6OKMo_XOlFosXTLWHNnX0vz4dB7lWf39Q5IBs,3434
412
+ build/lib/another_ayx_python_sdk/core/doc_utilities.py,sha256=L4LSoPox4v7iz8fQzRoeaav7THB6ZiKUJWWtS_F0_aY,1390
413
+ build/lib/another_ayx_python_sdk/core/environment_base.py,sha256=A2UIihZqjU7eMXr4wQb-501-0wZXON8LuDM1Tje3Hy4,5602
414
+ build/lib/another_ayx_python_sdk/core/exceptions.py,sha256=HAa-f2Qn8_DThDFd1meP9AGtSSmi4MqbYPPMPzjG88w,1807
415
+ build/lib/another_ayx_python_sdk/core/field.py,sha256=003fsliB-JN0icLykAnwIXCoQfGyrkumGIqNpvhV-Ig,5699
416
+ build/lib/another_ayx_python_sdk/core/input_anchor_base.py,sha256=gO6uvKGqLMZUCPqPqAOYTAT0phJ0-FXCF-Fat2NR0aY,2573
417
+ build/lib/another_ayx_python_sdk/core/input_connection_base.py,sha256=d3rE7XcDKvuf0PZ_6VCZCKc3hNs8CyavyyowmkjfNes,5704
418
+ build/lib/another_ayx_python_sdk/core/io_base.py,sha256=rh4VUzkExuzeKwq606HAT-j2zrpRPZRxe8aSKcBGBUs,4002
419
+ build/lib/another_ayx_python_sdk/core/metadata.py,sha256=FIXt5rN89rGMmu7D0h1GK4tSCOy-_SMh8pgPBJgj9IM,4700
420
+ build/lib/another_ayx_python_sdk/core/observable_mixin.py,sha256=e5dh2GAShrNoR496BH3pBiREBDRz0KfofH3JslxFdG4,2982
421
+ build/lib/another_ayx_python_sdk/core/output_anchor_base.py,sha256=8PxAJB0au6Fqn-p7Wo-aakkeSOEhQqBVhq2w9tl7UvA,4381
422
+ build/lib/another_ayx_python_sdk/core/plugin.py,sha256=_Kt8_wKlXJhpTSPG27LSdHUFRxXTn1UKVq1YazGp9J8,3635
423
+ build/lib/another_ayx_python_sdk/core/plugin_v2.py,sha256=6x1wlNLxEuelCk0DvBGvKL8WHEoXwYGDO_6J89BwASU,3240
424
+ build/lib/another_ayx_python_sdk/core/provider_base.py,sha256=daQOIdG0GaBa0Ii9QdaN1CAvVup5Q1ig2AtBopMLIrc,3413
425
+ build/lib/another_ayx_python_sdk/core/proxy_requests.py,sha256=lG-HFnHi9EYxw9gfgbC7El9ZlS0c7uxRCxwE7cb6aNg,1933
426
+ build/lib/another_ayx_python_sdk/core/record_packet.py,sha256=UUwzgSxzIB_mvYeQx5OgqN8s7er2WKeGUYaLggiavTE,2511
427
+ build/lib/another_ayx_python_sdk/core/record_packet_base.py,sha256=gNeMhMMVgV9LE8NkhgxWhbMCVMGIlVPFH_7ZqYddk7E,3686
428
+ build/lib/another_ayx_python_sdk/core/register_plugin.py,sha256=H-cLMBGZo2nKHmZwnzaanziYsHTPsQIcipxCpsXfXFE,3998
429
+ build/lib/another_ayx_python_sdk/core/testing.py,sha256=kDnnH7tkRvHyxePlTR9p73svkO2soxXI-XGG5anzt2w,6738
430
+ build/lib/another_ayx_python_sdk/core/utils.py,sha256=CJ_R5QusT5GobcfSFoB2nWmWserGnmVzfuZxKa4Oo3A,5104
431
+ build/lib/another_ayx_python_sdk/examples/AyxSdkInput/main.py,sha256=dNpM5QI3B5CsRXGuvlO7X334tuXi5ZMmGwxcdkvQIdQ,3286
432
+ build/lib/another_ayx_python_sdk/examples/AyxSdkMultiConnectionsMultiOutputAnchor/main.py,sha256=aMKMKS8Tu03m82ZIFG3FCm-3JNGi7c51z_SlsJJm7MA,3971
433
+ build/lib/another_ayx_python_sdk/examples/AyxSdkMultipleInputAnchors/main.py,sha256=PIJ0cDLMUW7lSiNx3_M0DIY2vA3jVrxDas_vnE2kr8g,3213
434
+ build/lib/another_ayx_python_sdk/examples/AyxSdkMultipleOutputAnchors/main.py,sha256=Ku8M4EldWl1NjqwLKHrBVr2xI4JaJwa2Hhuf0bwi1BI,3804
435
+ build/lib/another_ayx_python_sdk/examples/AyxSdkOptionalInputAnchor/main.py,sha256=feOonQeCXiIir1jTv31AVtF7837KXX-I9l1hUs6FdNM,3623
436
+ build/lib/another_ayx_python_sdk/examples/AyxSdkOutput/main.py,sha256=008r2gorEjJ7uT4K53BmgOhYG_V5rnsInO1TU5ZKYL4,2882
437
+ build/lib/another_ayx_python_sdk/examples/AyxSdkPassThrough/main.py,sha256=NPTTFJ5NG4iC0LiZVVUADxWFD-QW5fPbNxE25WD2cM0,2975
438
+ build/lib/another_ayx_python_sdk/providers/__init__.py,sha256=TiLsMxL_PtkKz_0Jlb2Cjt5fAqJzrhjUeAvssvS-U48,657
439
+ build/lib/another_ayx_python_sdk/providers/amp_provider/__init__.py,sha256=pOf_Hy_LIWYeJa4uv8y7W2wm_DtZcSZgPpLb3GhWVaU,1428
440
+ build/lib/another_ayx_python_sdk/providers/amp_provider/__main__.py,sha256=0E7rRNvgmi7rcvAXvG-s0L2Oj9uSnJSOrM2xAWMQzgE,2675
441
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_dcm.py,sha256=u9kO7GPmbawh_hASTTyaAlkt9old3_2qNsSF9DuA1ls,2077
442
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_driver.py,sha256=OaxOWF8WSHT96_A4hltElhUmSDiUeEUpUezassCy-oE,13859
443
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_environment.py,sha256=eKooci9XKR5wBwgBqf9owwJZxbjFtrgq3Jwf9IzZoJo,2810
444
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_environment_v2.py,sha256=13IOO0KIGRfBdQ4UZXZfrCjkrMbEildSUE6O-61hniM,9377
445
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_input_anchor.py,sha256=OwGE5Wgednvac4fC8sus2_ST-osd-ugfNx4I4vfbcKs,2565
446
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_input_connection.py,sha256=glYq2RBN_Djnt1OL9R1U5dKdje3hwc_baMtGyOabgpI,4573
447
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_io.py,sha256=O-e_hAl8Q_c-LJihfkys0SjCklonUo6ELGZhjKC38F8,2337
448
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_io_components.py,sha256=tc_T5lnX9n42G-0vA_1AmetqHc3llYMiMUHXvMEuPjk,15940
449
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_output_anchor.py,sha256=jNEONRj5vsRD7dN5ERcW53HeNKs2O_SfgxOEVJLbfsY,3563
450
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_provider.py,sha256=V9YtT5An1jfgJwxpMhhKwIqAt2FYbRYXnjet8rPcsUU,2814
451
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_provider_v2.py,sha256=CZkqUmb7DwiSqwNgc3Jmh1hV6tA30TlPfPEvUuFgvOY,4808
452
+ build/lib/another_ayx_python_sdk/providers/amp_provider/amp_record_packet.py,sha256=e0HI78Ws-WpJbkD8FN7UqPUEIDpzCISdp7tH4ihe1xs,895
453
+ build/lib/another_ayx_python_sdk/providers/amp_provider/cng_certs.py,sha256=eynm1Oag5bm9C49d-2Ne6w58HIUJkoxpi3awj-nkrg0,5894
454
+ build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_util.py,sha256=L8IOpXYYkk9gBjI0U4PMfLGl7moOCM1yDeBaFXPr5j8,4812
455
+ build/lib/another_ayx_python_sdk/providers/amp_provider/logger_config.py,sha256=yQCLkmIuIDoLA_-X1iRYqS9Lk8mYvU4iGwjUU6iyB4c,2395
456
+ build/lib/another_ayx_python_sdk/providers/amp_provider/plugin_class_loader.py,sha256=bHr_y7iBE487udnnQ7XfJkKpOUCJnDyAgifYa8qfZ3M,2275
457
+ build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_runner.py,sha256=9PEK6WFy6FleiEee3ppCfAsGSYBPiwelTsCqQXKnjWY,4173
458
+ build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_service.py,sha256=cpxOxWMScKKFadHk3EduB0n21BBBY5s0R9sN4WvAX1Y,7684
459
+ build/lib/another_ayx_python_sdk/providers/amp_provider/sdk_tool_service_v2.py,sha256=5uZRnmh3E5PFU1j1QpkqNwnflYnKJ3xd6Jouc1-Mziw,14410
460
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/__init__.py,sha256=eIIkugmRJ2X5CoiVWSB2MQa0Zu04q5t7il9mzQdo2ow,1244
461
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/input_anchor_builder.py,sha256=WDkLqVgULW2jzJX1IRXjWqMhmlClQzJHaI8IY5ABJSU,4528
462
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/input_connection_builder.py,sha256=atAfgG1D8ddqCPRtLT_KdDW5NrUJQts7T6hQ0lXvfEw,3566
463
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/metadata_builder.py,sha256=09zZSsDzw9TfAwGK8j0-scp9SUBQJWC62VhKqRGRrzs,4101
464
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/output_anchor_builder.py,sha256=fa2RPLrpvwy1Q-Z6zn27Fpe6WOkWs8mTujz67oyu_zc,3833
465
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/packers.py,sha256=RmlgI6way1qchYVaxBfp9xnjfcHhbr2lKilF-VqgESo,13218
466
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/record_builder.py,sha256=gx-CEx-Ea62nuEHjppvFOBlBwO3-VpeFZnzM5UBcYnw,6723
467
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/record_packet_builder.py,sha256=IwwY0-VL_GIjDyx6LIWiZ1L2jbvVIa0GSgXd5vchjJ0,4644
468
+ build/lib/another_ayx_python_sdk/providers/amp_provider/builders/tool_config_builder.py,sha256=m3fZmtYljwABr5GfAvJNkkREV2cYGhlBsSdfN6VjzZM,1874
469
+ build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/__init__.py,sha256=EaT4xhFRZ8-RpQ4f7jYAuNEIkrn_BIcMQqwb8wL7WR0,793
470
+ build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/amp_transport.py,sha256=dTEHvHHD-Zgb0KKYHnGXKo0ELNrJLSQ4_JZ9F6y9SPE,5263
471
+ build/lib/another_ayx_python_sdk/providers/amp_provider/data_transport/transport_base.py,sha256=mXbZok5iqCQb_2bk2sN_ZVzG5j9d7Izlbdkzy459eM4,1200
472
+ build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/__init__.py,sha256=fYjPpBCbRRUy6q-3W40fq3drZm3YB6lpw4NjsPs_6bs,643
473
+ build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/control_msgs.py,sha256=eV6hxnIwkqXHTE-cAO2G_PdBGh3sWYsCsGsL4mKGBFs,6252
474
+ build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/dcme_msgs.py,sha256=wBUO9hFf4bHoUN3GzFJaKpEiM-AhrcEf2VtzcvUtlHY,4170
475
+ build/lib/another_ayx_python_sdk/providers/amp_provider/grpc_helpers/record_transfer_msgs.py,sha256=M50XM9wnCcxek-KG0FeeJXWSvi7gokhQ6ipcieiZ1gI,1288
476
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/__init__.py,sha256=b6E5FcMi86N_vQQAo1nCPuCzjyAY7_c_2UPOwe20x80,2426
477
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/dcm_repository.py,sha256=TJYEyZTd70jq7GBCCr8RRAB2y6QVtl5813MsTvEXywc,8506
478
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/environment_repository.py,sha256=lhCbd_a26QfIfPFhGneuG-o7Ok223CZm2vnNP7AcdgY,7220
479
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/grpc_repository.py,sha256=lEwMjZ3o5jkxXln97Qy41KLilgEiRcL8kbPhCWsigjU,3554
480
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_anchor_repository.py,sha256=gari7N0IvOuN-9H_wJ_zm0y8f3UbKVmZnppKG7d6dPk,4115
481
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_connection_repository.py,sha256=ca0VyDmo2_lzOH-rWOnYQ_Vm78RhiSU88DLMzYd-GB4,10669
482
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_metadata_repository.py,sha256=CR7HAY37O2ycwJE7UM9GiRhilPG_wg3x96P77LzetEE,5550
483
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/input_record_packet_repository.py,sha256=nD4NZAK4Ykk3IPalXcpC6rT96XH5j3Z42q1y0_y1qxg,9494
484
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/io_repository.py,sha256=-vUmqzfj7qoEbKa_3jgLj4xwcx-EJdzxcRFvsjGYRH0,5729
485
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_anchor_repository.py,sha256=h9FCgyl42NO0sdixcGqie5W0hif85_FKhmmAwumutiU,4174
486
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_metadata_repository.py,sha256=U_TlQSGOIiaXUQ_HVnD84BEeyWJ-M1XAp_Uw7bdMjKc,4710
487
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/output_record_packet_repository.py,sha256=02mtp_tlB1POWHWdVmJw6zZrev45tpXyJEZEw-1JzkY,5827
488
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/plugin_class_repository.py,sha256=mUJtaefCYIFrPhGgETCesLtsyyVFp4gS2e-nrxKQ9v0,1827
489
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/singleton.py,sha256=VNO_4_ANx3udGvwjf_MOcQ8JES9Ex0-kmBOJlSqwMU8,1094
490
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/test_harness_state_repository.py,sha256=pYC4y9wJ8wd0gbXD0OmneAzwgzomh-mzD10zXNnA9tQ,5923
491
+ build/lib/another_ayx_python_sdk/providers/amp_provider/repositories/tool_config_repository.py,sha256=7K3QKX25iaHFMq8KsUEP5NbHXY9ngQxJVhDF0kLnVGg,3052
492
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/__init__.py,sha256=3eENcvXTCJnLg8QZC7LoHhh9iGQH3GEdOpOqdj1GCtg,666
493
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
494
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/close_outgoing_anchor_pb2.py,sha256=kUJ2ECeiQgNw5ECnNVVaNL4_-IrmL2459IcZyBtm7ik,1019
495
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/close_outgoing_anchor_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
496
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/dcm_e_pb2.py,sha256=tV6r9wQRAZFugdqzjp7aqO2PmBw4PjMAHQTLGDjc7go,2980
497
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/dcm_e_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
498
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_anchor_pb2.py,sha256=mGWL65VMqj0IPQMrUmWue2-I6dzq30Swumw_UOHszUE,1198
499
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_anchor_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
500
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_complete_pb2.py,sha256=4ReQcCkTrrfip3gbT_wh7hUukGe_3SUCOyjslsai-tE,1199
501
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_complete_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
502
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_pb2.py,sha256=NUjlq2t5QC1UxNsnOvMK3uL_6JlyET8GnbObPoVvcZ4,1130
503
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_connection_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
504
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_data_push_pb2.py,sha256=DtVcUu4kfdVQr998hCwiNmRq5yWrwpmI_tapNkv96n8,1198
505
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_data_push_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
506
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_record_packet_push_pb2.py,sha256=cHt1uuH3vbptTOxYI8BloywRNxeV9GpqaLITl9ljiyo,1249
507
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/incoming_record_packet_push_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
508
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/metadata_pb2.py,sha256=4ock2DpN0hrm9lvHZpZoOpN2tE3fYOZLezdqzj5Abl0,2126
509
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/metadata_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
510
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_anchor_pb2.py,sha256=gBiFVaSnzSJy9YAI0AhwIX1RwH7UH0dXFaXgSim3vGo,1602
511
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_anchor_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
512
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_data_push_pb2.py,sha256=r1fva2AbeXjMOQbq97zW1D_FYLnGsMCusQLM3o-nX8Q,1150
513
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_data_push_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
514
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_metadata_push_pb2.py,sha256=rkm_IYLHXHVN3gozu_k0cejKWxqrSxP27iQ0EdFLQZo,1200
515
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_metadata_push_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
516
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_record_packet_push_pb2.py,sha256=hEnXW--Eoo_Rd4ELjtwu3ZP0ENdXn6spN3mjjguVYYg,1201
517
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/outgoing_record_packet_push_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
518
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/output_message_data_pb2.py,sha256=230MzbYpVw3aSoL7WRl4gpaEXzC5O1b-WeQx_HASo-8,1837
519
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/output_message_data_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
520
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/password_data_pb2.py,sha256=PA8gDYevnTBf6tG3dZuT9uEWcEDMRBDuCseYEyc2xe4,972
521
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/password_data_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
522
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/plugin_initialization_data_pb2.py,sha256=ZJNQprFmsdW_D8IgFXU5ZTskN7H-mNQ-U_Sj47tHbcA,2109
523
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/plugin_initialization_data_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
524
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_batch_pb2.py,sha256=PRPMA7f5w4wBCCgkmdD-lPS7zwi3-zrhb2c6Z59oKyw,1053
525
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_batch_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
526
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_packet_pb2.py,sha256=T4TbtbwdpA4RtHJc8MnNwSwQsKY3YbIQiGFcKs7neGY,2037
527
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/record_packet_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
528
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_engine_service_pb2.py,sha256=O01rEpRL-JxKx4m_VJZwZkN2yp1AA9oq-FODPKp6Ep8,2528
529
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_engine_service_pb2_grpc.py,sha256=t_FISgEp46mWH1u6nTBeuis8qW2dxFzzCH0qJbBMxss,14275
530
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_pb2.py,sha256=YDWCup4TUwcuTIQ3ziNo86fXmW_tEEkTi9gUxYU59JA,2006
531
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_pb2_grpc.py,sha256=og-9hqZALhTItBdSjjZKK890zCt1d6T0BEkxUphww7U,10999
532
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_startup_info_pb2.py,sha256=hqZY56ksSESaNt8EU5YfhGTKHvJ0mU42KhT-JNe-oSw,1148
533
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_startup_info_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
534
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_v2_pb2.py,sha256=Z1dzplqMkjZL9KmacDC5IOdI5gtJq6nPgX0vn7FqxLo,5439
535
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/sdk_tool_service_v2_pb2_grpc.py,sha256=BUqEHPDZW5gGCZrcoV9JJSZrl8KAnmMMIR0LyrPHr1M,4160
536
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/translate_message_data_pb2.py,sha256=HnWfaM-1c67hW1uv_lxUE0osj-2W6qZ_ClXb9Ul_yeM,1240
537
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/translate_message_data_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
538
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/transport_pb2.py,sha256=sc1ZBzOrnkbrxVRNmy1r946uVWvJ4zSPHF7g7THkWQA,2153
539
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/transport_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
540
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/update_progress_pb2.py,sha256=vl0YrkcU951qUbCkKfJ3A-atB7lDEJPBLIS1jsKIWuo,987
541
+ build/lib/another_ayx_python_sdk/providers/amp_provider/resources/generated/update_progress_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
542
+ build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/__init__.py,sha256=3eENcvXTCJnLg8QZC7LoHhh9iGQH3GEdOpOqdj1GCtg,666
543
+ build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/constants.py,sha256=N4dpU-B7AwBZ9wTDoOBvXESv1H8jTyIAy3P7H23xa4Q,789
544
+ build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/conversions.py,sha256=QJFPC2xOu1UtgVzudUsHSG_Dpqn2-0uO7pQ9ySZmcJs,1759
545
+ build/lib/another_ayx_python_sdk/providers/amp_provider/utilities/utilities.py,sha256=6kmVIyhdh4VJbwU3SU8ngwbqimzBqszkH-hiGvJtK6Q,1991
546
+ build/lib/another_ayx_python_sdk/providers/e1_provider/__init__.py,sha256=MQk9kYE1Mdw54h1DHL7e__BZF-RZ3xl7XuzHSquqoS8,1104
547
+ build/lib/another_ayx_python_sdk/providers/e1_provider/anchor_builder.py,sha256=ghxWiLDqcZFTyqBz7HPQy2wBGV6U0H5WYZl9YaPTwSg,3794
548
+ build/lib/another_ayx_python_sdk/providers/e1_provider/cache_e1_sdk_import.py,sha256=h92RK27nwQ_LVr3xdSE20ID2oT_BpU86dywTrJfD6xA,1273
549
+ build/lib/another_ayx_python_sdk/providers/e1_provider/connection_callback_strategy.py,sha256=NfiVTS5dJSFmmcx5EDX9mKhMggJx6jvBVA0VRaTYHKs,5791
550
+ build/lib/another_ayx_python_sdk/providers/e1_provider/connection_interface.py,sha256=vuRrFUZekMyAv98VVBYWR52fzyosDirzl7OfyGMps2M,4512
551
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_dcm.py,sha256=m5fXs_eD-PC6P42orgcjjpy7rznhbizz1xGcVmZrLQc,1732
552
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_environment.py,sha256=QzSnaesVrej953AKc2rKf-7HcDx9Sb3-TlJ40ovdb-k,4423
553
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_anchor.py,sha256=qJKRizp-dLxhmwXJ4Z6lhZxLeR_yL25ClvgOl0Wu1_g,1924
554
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_anchor_proxy.py,sha256=vhzpDJX0Ui406UWx8keQ0pXlt66VX9fdy4en-dm9pe4,1249
555
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_input_connection.py,sha256=Uu7XaJ1-qab_UwnIpwq11a1WJ4m2gpz7UNIuHwNq-Xc,3360
556
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_io.py,sha256=9ecWf7FrlyQh-9dmFJkK4rkw-T65MZfKdQdh7wm_Djo,2668
557
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_output_anchor.py,sha256=848qt5QIXp4ps4ST74B1Cj4Jmr2koS1obAcaU7JIeNg,5624
558
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_output_anchor_proxy.py,sha256=94N3A04ceEsYBlEr3ieQiZnwcm9qh_BsMOwT0kBItCw,3593
559
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_plugin_driver.py,sha256=0vJKCl3KaruYfgYxN-uXLVz9fu2-42QkXtjFb-6KWH0,2774
560
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_plugin_proxy.py,sha256=uIOAIMyvUvVlqo0NVce94RsqPRkjtyiXeSNcCRq42Yw,13472
561
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_provider.py,sha256=VxonpDfF1vif_BPlcVBFSXYWLE_Hnju2jxijODLcV0s,2716
562
+ build/lib/another_ayx_python_sdk/providers/e1_provider/e1_record_packet.py,sha256=qs7fFr1OuRqOCcUluYGJ1qrBx4qB878xIdQAcJj2J7s,882
563
+ build/lib/another_ayx_python_sdk/providers/e1_provider/events.py,sha256=ccLxmFyZKajBzi5W4o8HD8s_ZkfhawWlBYx6baV4esw,1288
564
+ build/lib/another_ayx_python_sdk/providers/e1_provider/tool_config_loader.py,sha256=_6vYK4y78zWCRtCB65mvm5dtnzb2rWFKfCxG72B8PG8,4708
565
+ build/lib/another_ayx_python_sdk/providers/e1_provider/workflow_config.py,sha256=ruq_EvDMkh9aR4_4GJ1uOowztWNtYItIdzRgibJvGXg,1124
566
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/__init__.py,sha256=dvYV9iTibKY8bMd9U-hfWdzsvVlKa8WjMceOCg3gf3Q,690
567
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/__init__.py,sha256=LsnoVFs75qsbWSqw_cxBDQ7on-79O1p-MamWRggHSJ8,1241
568
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/alteryx_engine.py,sha256=TJoYF0TBFvpFdVyecvsNQqnX4z0UEe8cEOJG9HAsTnY,3660
569
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/constants.py,sha256=nVJPjYpT6CuiGI6iYj54nymfDRzMVflIwFiqHjrkMOg,1258
570
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/field.py,sha256=tWRGzF2LTOmMEsBaD3g6wNkDy-exmiuXNq9AJelWtmc,4399
571
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/output_anchor.py,sha256=Dlc33rRCUQ-0sq5qU6Fo4SZHPO-TMTUHawWZEbw7Kh4,1950
572
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/output_anchor_manager.py,sha256=QaGmwMYnwUlVpkIeUrqkmauxaOLE6-FOEYZIOETcEh8,1197
573
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_copier.py,sha256=pbW_3p2qzdssI43Tmu6xTgs9JDQx22y_VgY2B-TDG1w,2474
574
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_creator.py,sha256=S4I4EtLJ3HobiIVGR_gAcGylL7CmX4e8knOxKRTcTg8,1448
575
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_info.py,sha256=B_YMMvsqFxqgOT6tDpCxfimikSJmjr6ldWKua4nDvzY,4358
576
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/record_ref.py,sha256=6pR7sWZuz6SOqMSO7zfgDMnsa9SuH9lIIpFXWozoCio,1479
577
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/tool.py,sha256=W3DkQAwQ5V4Trsm-_iCj994JvbH_pxsDWRRabY50Enw,1098
578
+ build/lib/another_ayx_python_sdk/providers/e1_provider/mock_e1_sdk/AlteryxPythonSDK/tool_execution_info.py,sha256=Wz4nO8rWPW4OVpIvAjbRgwJwYEjatZ7keLYNh-bmDKc,1596
579
+ build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/__init__.py,sha256=7SXkCYzeHn2Jg4LNRLMQm2Z1AjE6TMDwB65yv6TPN64,796
580
+ build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/field_proxy.py,sha256=2tgYNR0mOA1MSsBKVl6CHFi2oVjcks_wRUqt32l1Tno,3718
581
+ build/lib/another_ayx_python_sdk/providers/e1_provider/proxies/record_copier_proxy.py,sha256=ABvYO2C-0CGZSn-rw94zWFiPl1e3PI87ZmTfzCx7CFc,1978
582
+ build/lib/another_ayx_python_sdk/providers/e1_provider/records/__init__.py,sha256=fkjR5nY61NXwdUspwS2LF3MXcp6WhIRrWM2vv0N3e2Y,910
583
+ build/lib/another_ayx_python_sdk/providers/e1_provider/records/base_record_container.py,sha256=HCtfHvU9n3ZxbICwuW_mrG7bXv_QtVusV01DvdWJrqw,1601
584
+ build/lib/another_ayx_python_sdk/providers/e1_provider/records/parsed_record_container.py,sha256=kV9vlQqP0zI5dNEHIC5yYtosVSp4Lp0Mq9ksiDS68D4,2496
585
+ build/lib/another_ayx_python_sdk/providers/e1_provider/records/raw_record_container.py,sha256=veKhHh_jY8Nk6c8PHtNULngtcH_503Dz2D_J_hLSiwk,3953
586
+ build/lib/another_ayx_python_sdk/providers/e1_provider/utilities/__init__.py,sha256=Iq5lcrAAqqypBIVGmj93WRO3BxnhzEGa4xeJgSjVQNI,1242
587
+ build/lib/another_ayx_python_sdk/providers/e1_provider/utilities/utilities.py,sha256=A93ApFR6ka2ANQoPugG85kkk-btxtcBjp2JmKBL1jhw,1926
588
+ build/lib/another_ayx_python_sdk/providers/file_provider/__init__.py,sha256=PgXnL-GtsgZnUwMTRMInsBr2phjQTGTsmhPIwyyKZic,1242
589
+ build/lib/another_ayx_python_sdk/providers/file_provider/environment.py,sha256=MBsRWxU9zNYSewv4sOe_gD-mOFI-JKuHsXUcEQgw044,4134
590
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_adapter.py,sha256=v7qOCuH9t0M6YBMaHJ7fG2MD0m3eMdiBQJPitqT-bYc,10413
591
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_provider.py,sha256=02WJAJbBrpv8-9RrrtUGPoy7nwkx1wVEuUr_a14tokg,6882
592
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_dcm.py,sha256=smN9Ryo0Fuq9itD_5M32L0pKV3EHYoPBXDLJmYDpBwQ,1736
593
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_input_anchor.py,sha256=q65D8gFqAoc0hJESL5fshu8P2mLbAj3ShgjuAHTimUk,2404
594
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_input_connection.py,sha256=Z75inVvY9rZ3zL9e1B3TC0dTAdJGW0Qhx1DwpXUoASY,3832
595
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_provider_output_anchor.py,sha256=-BX_S434Ew-kejnUarrU_SqM94C1g2Pu8JyrsV1LOzY,4181
596
+ build/lib/another_ayx_python_sdk/providers/file_provider/file_record_packet.py,sha256=Zc0ikqUG8nGn2jbHgUc0tWGW3s0eMrU_kBVSdQXbKjM,883
597
+ build/lib/another_ayx_python_sdk/providers/file_provider/iox.py,sha256=PCvyYqeiogRFgfBmsf_8nabFl_K10erqR636RHmO8b4,1969
598
+ build/lib/another_ayx_python_sdk/providers/file_provider/tool_input.py,sha256=WKUTfpdGRpasQC8-_NXVPZtMwXC0iphegfrFIQN_MZ4,3406
599
+ build/lib/another_ayx_python_sdk/test_harness/__init__.py,sha256=vTnS84FTQtgARLMWp0xlmkr9SpOu5RuBlyGGaP6JYU4,657
600
+ build/lib/another_ayx_python_sdk/test_harness/__main__.py,sha256=LgQ1iy8WDoK-OYBlP2k2c2Jzw4Fqr9aNRMUaD4aMc48,3566
601
+ build/lib/another_ayx_python_sdk/test_harness/plugin_runner.py,sha256=CXu4ruY3fuKX_FGD88zH0KotBOIqbSxsdowBbZ2z9uQ,16969
602
+ build/lib/another_ayx_python_sdk/test_harness/process_lifecycle_manager.py,sha256=ytAKK2aQRNe1w2wp2XIn3PSlUHuGbua3Tnrayn2FPOs,2750
603
+ build/lib/another_ayx_python_sdk/test_harness/sdk_engine_service.py,sha256=Wai2U-JMLnFN6vhz7Gz3CuMTy611F2z-i8S83fy7qYE,4447
604
+ another_ayx_python_sdk-2.4.24.dist-info/METADATA,sha256=tgsOtRv6fKbieDbuA9jYZou4roNxb96E7G-sXfVoo6U,2191
605
+ another_ayx_python_sdk-2.4.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
606
+ another_ayx_python_sdk-2.4.24.dist-info/entry_points.txt,sha256=NqVRYuHblqbm6riofdadL-81b6QzS31HgSTiNGyrmU0,80
607
+ another_ayx_python_sdk-2.4.24.dist-info/top_level.txt,sha256=uXDoc4UQupc62wviT8O0HvpanAWRvaBt-o4qGPi0plU,34
608
+ another_ayx_python_sdk-2.4.24.dist-info/RECORD,,
@@ -0,0 +1,14 @@
1
+ # Copyright (C) 2022 Alteryx, Inc. All rights reserved.
2
+ #
3
+ # Licensed under the ALTERYX SDK AND API LICENSE AGREEMENT;
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # https://www.alteryx.com/alteryx-sdk-and-api-license-agreement
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Alteryx Python SDK: ayx_python_sdk top-level."""