aplos-nca-saas-sdk 0.0.12__py3-none-any.whl → 0.0.14__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.
- aplos_nca_saas_sdk/integration_testing/configs/_config_base.py +7 -2
- aplos_nca_saas_sdk/integration_testing/configs/app_settings_config.py +36 -36
- aplos_nca_saas_sdk/integration_testing/configs/config_sample.json +10 -10
- aplos_nca_saas_sdk/integration_testing/configs/file_upload_config.py +1 -1
- aplos_nca_saas_sdk/integration_testing/configs/login_config.py +15 -14
- aplos_nca_saas_sdk/integration_testing/configs/nca_execution_config.py +1 -1
- aplos_nca_saas_sdk/integration_testing/integration_test_base.py +2 -2
- aplos_nca_saas_sdk/integration_testing/integration_test_configurations.py +9 -5
- aplos_nca_saas_sdk/integration_testing/integration_test_factory.py +1 -1
- aplos_nca_saas_sdk/integration_testing/integration_test_response.py +1 -1
- aplos_nca_saas_sdk/integration_testing/integration_test_suite.py +10 -3
- aplos_nca_saas_sdk/integration_testing/main.py +9 -8
- aplos_nca_saas_sdk/integration_testing/readme.md +1 -1
- aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py +4 -4
- aplos_nca_saas_sdk/integration_testing/tests/app_login_test.py +3 -3
- aplos_nca_saas_sdk/integration_testing/tests/file_upload_test.py +40 -91
- aplos_nca_saas_sdk/integration_testing/tests/nca_analysis_test.py +2 -2
- aplos_nca_saas_sdk/integration_testing/tests/validation_test.py +1 -1
- aplos_nca_saas_sdk/nca_resources/_api_base.py +44 -0
- aplos_nca_saas_sdk/{aws_resources → nca_resources}/aws_cognito.py +2 -2
- aplos_nca_saas_sdk/{aws_resources → nca_resources}/aws_s3_presigned_payload.py +3 -3
- aplos_nca_saas_sdk/{aws_resources → nca_resources}/aws_s3_presigned_upload.py +28 -22
- aplos_nca_saas_sdk/nca_resources/nca_analysis.py +23 -167
- aplos_nca_saas_sdk/nca_resources/nca_app_configuration.py +4 -4
- aplos_nca_saas_sdk/nca_resources/{nca_login.py → nca_authenticator.py} +23 -20
- aplos_nca_saas_sdk/nca_resources/nca_endpoints.py +56 -30
- aplos_nca_saas_sdk/nca_resources/nca_file_download.py +130 -0
- aplos_nca_saas_sdk/nca_resources/nca_file_upload.py +27 -29
- aplos_nca_saas_sdk/nca_resources/nca_validations.py +34 -0
- aplos_nca_saas_sdk/run_analysis_execution.py +148 -0
- aplos_nca_saas_sdk/utilities/commandline_args.py +29 -13
- aplos_nca_saas_sdk/utilities/environment_services.py +3 -2
- aplos_nca_saas_sdk/utilities/environment_vars.py +10 -4
- aplos_nca_saas_sdk/utilities/file_utility.py +1 -1
- aplos_nca_saas_sdk/utilities/http_utility.py +1 -26
- aplos_nca_saas_sdk/version.py +1 -1
- {aplos_nca_saas_sdk-0.0.12.dist-info → aplos_nca_saas_sdk-0.0.14.dist-info}/METADATA +1 -1
- aplos_nca_saas_sdk-0.0.14.dist-info/RECORD +51 -0
- {aplos_nca_saas_sdk-0.0.12.dist-info → aplos_nca_saas_sdk-0.0.14.dist-info}/licenses/LICENSE +1 -1
- aplos_nca_saas_sdk-0.0.12.dist-info/RECORD +0 -47
- /aplos_nca_saas_sdk/{files/analysis_files/single_ev/configuration_single_ev.json → sample_files/analysis_files/single_ev/config.json} +0 -0
- /aplos_nca_saas_sdk/{files/analysis_files/single_ev/single_ev.csv → sample_files/analysis_files/single_ev/input.csv} +0 -0
- /aplos_nca_saas_sdk/{files → sample_files}/analysis_files/single_ev/meta_data.json +0 -0
- {aplos_nca_saas_sdk-0.0.12.dist-info → aplos_nca_saas_sdk-0.0.14.dist-info}/WHEEL +0 -0
@@ -1,17 +1,27 @@
|
|
1
|
-
|
1
|
+
"""
|
2
|
+
Copyright 2024-2025 Aplos Analytics
|
3
|
+
All Rights Reserved. www.aplosanalytics.com LICENSED MATERIALS
|
4
|
+
Property of Aplos Analytics, Utah, USA
|
5
|
+
"""
|
6
|
+
|
2
7
|
import argparse
|
3
8
|
import getpass
|
9
|
+
import os
|
4
10
|
from pathlib import Path
|
5
11
|
from typing import List
|
6
|
-
|
12
|
+
|
7
13
|
from dotenv import load_dotenv
|
8
14
|
|
15
|
+
from aplos_nca_saas_sdk.utilities.environment_vars import EnvironmentVars
|
16
|
+
|
9
17
|
# load the environment (.env) file if any
|
10
18
|
# this may or may not be the desired results
|
11
19
|
load_dotenv(override=True)
|
12
20
|
|
13
21
|
|
14
22
|
class CommandlineArgs:
|
23
|
+
"""Wrapper fro commandline args"""
|
24
|
+
|
15
25
|
def __init__(self) -> None:
|
16
26
|
# command line args
|
17
27
|
self.parser = argparse.ArgumentParser(
|
@@ -35,7 +45,12 @@ class CommandlineArgs:
|
|
35
45
|
"-m", "--metadata-file", required=False, help="Path to the metadata file"
|
36
46
|
)
|
37
47
|
|
38
|
-
self.parser.add_argument(
|
48
|
+
self.parser.add_argument(
|
49
|
+
"-d",
|
50
|
+
"--host",
|
51
|
+
required=False,
|
52
|
+
help="The api host/host. Eg. api.aplos-nca.com, api.tenant.aplos-nca.com",
|
53
|
+
)
|
39
54
|
|
40
55
|
self.parser.add_argument(
|
41
56
|
"-v", "--verbose", required=False, help="Detailed logging information"
|
@@ -65,7 +80,7 @@ class CommandlineArgs:
|
|
65
80
|
# auth information
|
66
81
|
self.username: str | None = None
|
67
82
|
self.password: str | None = None
|
68
|
-
self.
|
83
|
+
self.host: str | None = None
|
69
84
|
|
70
85
|
# excuction setup
|
71
86
|
self.config_file: str | None = None
|
@@ -95,7 +110,7 @@ class CommandlineArgs:
|
|
95
110
|
self.config_file = args.config_file
|
96
111
|
# anything with a dash (in the args) is accessed with an underscore
|
97
112
|
self.analysis_file = args.analyis_file
|
98
|
-
self.
|
113
|
+
self.host = args.host
|
99
114
|
|
100
115
|
self.metadata_file = args.metadata_file
|
101
116
|
self.skip = args.skip
|
@@ -121,11 +136,11 @@ class CommandlineArgs:
|
|
121
136
|
"password", env.password, is_sensitive=True
|
122
137
|
)
|
123
138
|
|
124
|
-
if not self.
|
125
|
-
if self.skip and env.
|
126
|
-
self.
|
139
|
+
if not self.host:
|
140
|
+
if self.skip and env.host:
|
141
|
+
self.host = env.host
|
127
142
|
else:
|
128
|
-
self.
|
143
|
+
self.host = self.prompt_for_input("Api Domain", env.host)
|
129
144
|
|
130
145
|
if not self.analysis_file:
|
131
146
|
if self.skip and self.analysis_file_default or env.analysis_file:
|
@@ -178,7 +193,7 @@ class CommandlineArgs:
|
|
178
193
|
self.password,
|
179
194
|
self.analysis_file,
|
180
195
|
self.config_file,
|
181
|
-
self.
|
196
|
+
self.host,
|
182
197
|
]
|
183
198
|
for field in required_fields:
|
184
199
|
if not field:
|
@@ -293,14 +308,15 @@ def main():
|
|
293
308
|
print(f"username = {args.username}")
|
294
309
|
print(f"password = {pwd}")
|
295
310
|
|
296
|
-
print(f"
|
311
|
+
print(f"host = {args.host}")
|
312
|
+
print(f"analysis_file = {args.analysis_file}")
|
297
313
|
|
298
314
|
print(f"config_file = {args.config_file}")
|
299
315
|
print(f"metadata_file = {args.metadata_file}")
|
300
|
-
|
316
|
+
|
301
317
|
print(f"output_directory = {args.output_directory}")
|
302
318
|
|
303
|
-
print("
|
319
|
+
print("✅ All required parameters are accounted for.")
|
304
320
|
|
305
321
|
else:
|
306
322
|
print("Missing some required fields.")
|
@@ -1,3 +1,9 @@
|
|
1
|
+
"""
|
2
|
+
Copyright 2024-2025 Aplos Analytics
|
3
|
+
All Rights Reserved. www.aplosanalytics.com LICENSED MATERIALS
|
4
|
+
Property of Aplos Analytics, Utah, USA
|
5
|
+
"""
|
6
|
+
|
1
7
|
import os
|
2
8
|
|
3
9
|
|
@@ -6,7 +12,7 @@ class EnvironmentVars:
|
|
6
12
|
|
7
13
|
def __init__(self) -> None:
|
8
14
|
# load defaults
|
9
|
-
self.
|
15
|
+
self.host = os.getenv("APLOS_host", "")
|
10
16
|
|
11
17
|
self.aws_region = os.getenv("COGNITO_REGION")
|
12
18
|
self.client_id = os.getenv("COGNITO_CLIENT_ID")
|
@@ -17,10 +23,10 @@ class EnvironmentVars:
|
|
17
23
|
self.metadata_file = os.getenv("METADATA_FILE")
|
18
24
|
self.analysis_file = os.getenv("ANALYSIS_FILE")
|
19
25
|
|
20
|
-
if self.
|
21
|
-
self.
|
26
|
+
if self.host is not None and "https://" in self.host:
|
27
|
+
self.host = self.host.replace("https://", "")
|
22
28
|
|
23
|
-
self.aplos_api_url = f"https://{self.
|
29
|
+
self.aplos_api_url = f"https://{self.host}"
|
24
30
|
|
25
31
|
@staticmethod
|
26
32
|
def is_running_in_aws_lambda():
|
@@ -1,38 +1,13 @@
|
|
1
1
|
"""
|
2
|
-
Copyright 2024 Aplos Analytics
|
2
|
+
Copyright 2024-2025 Aplos Analytics
|
3
3
|
All Rights Reserved. www.aplosanalytics.com LICENSED MATERIALS
|
4
4
|
Property of Aplos Analytics, Utah, USA
|
5
5
|
"""
|
6
6
|
|
7
|
-
from typing import Optional
|
8
|
-
|
9
|
-
|
10
|
-
class Routes:
|
11
|
-
"""NCA Saas Routes"""
|
12
|
-
|
13
|
-
NCA_EXECUTIONS = "nca/executions"
|
14
|
-
NCA_GENERATE_UPLOAD = "nca/files"
|
15
|
-
|
16
7
|
|
17
8
|
class HttpUtilities:
|
18
9
|
"""Http Utilties"""
|
19
10
|
|
20
|
-
@staticmethod
|
21
|
-
def build_url(
|
22
|
-
domain_name: str, tenant_id: Optional[str] = None, user_id: Optional[str] = None
|
23
|
-
) -> str:
|
24
|
-
"""Build the url"""
|
25
|
-
url = domain_name.strip()
|
26
|
-
if not domain_name.startswith("http"):
|
27
|
-
url = f"https://{domain_name}"
|
28
|
-
|
29
|
-
if tenant_id:
|
30
|
-
url = f"{url}/tenants/{tenant_id}"
|
31
|
-
if user_id:
|
32
|
-
url = f"{url}/users/{user_id}"
|
33
|
-
|
34
|
-
return url
|
35
|
-
|
36
11
|
@staticmethod
|
37
12
|
def get_headers(jwt: str) -> dict:
|
38
13
|
"""Get the Http Headers"""
|
aplos_nca_saas_sdk/version.py
CHANGED
@@ -0,0 +1,51 @@
|
|
1
|
+
aplos_nca_saas_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
aplos_nca_saas_sdk/run_analysis_execution.py,sha256=cYzGdAHOriDI7UHNFwzeaR6sHhiwNysx3__eMze8hZc,4445
|
3
|
+
aplos_nca_saas_sdk/version.py,sha256=_onNZF7kevsfWbgb2Rf4yc8mxV_El4urJNYCxJ0_Aog,172
|
4
|
+
aplos_nca_saas_sdk/integration_testing/integration_test_base.py,sha256=ci3oOfz_McdDKGSrqOHF7F_vrvgTWo7HzxydNdPSHLs,2787
|
5
|
+
aplos_nca_saas_sdk/integration_testing/integration_test_configurations.py,sha256=gHQE1l9l7qunlg0APfYE2JZzdhYHMz-RJiXIiQu6l2U,1634
|
6
|
+
aplos_nca_saas_sdk/integration_testing/integration_test_factory.py,sha256=HdcGQycsBNv-cLGXfL3yVpRjLaj-QkAv1ih0L8yVXA0,2203
|
7
|
+
aplos_nca_saas_sdk/integration_testing/integration_test_response.py,sha256=Ocn2q_kdgEJB-4Ol-V3dh8MEkf6CJdrIiQVURUeM62o,819
|
8
|
+
aplos_nca_saas_sdk/integration_testing/integration_test_suite.py,sha256=L1ZFp3tE9zUnaCyzfTfKTYkgR_ksrIOi5YK7qViwKes,4413
|
9
|
+
aplos_nca_saas_sdk/integration_testing/main.py,sha256=rEi9uraktWC4lZbMFdRywU_ts90X-VT-VKfi3MFecgU,2036
|
10
|
+
aplos_nca_saas_sdk/integration_testing/readme.md,sha256=USg_Z8C3hYgOGgmDsv7DNR2IxRV0Xg6NvOYrwTBqZRE,626
|
11
|
+
aplos_nca_saas_sdk/integration_testing/configs/_config_base.py,sha256=PyXCiEbvM5usN8sbtVSEL0g1iqGh9bdE31kPORMJBIs,480
|
12
|
+
aplos_nca_saas_sdk/integration_testing/configs/app_settings_config.py,sha256=oeb0BAj94BXjncsBI06ivgnLDPp_ohNSd7W_K9SZHIM,2583
|
13
|
+
aplos_nca_saas_sdk/integration_testing/configs/config_sample.json,sha256=zeflEvdtpknGjk42FXHGG3cBbvLcbSnj1_99o21JiDc,3566
|
14
|
+
aplos_nca_saas_sdk/integration_testing/configs/file_upload_config.py,sha256=kODsim7yQVnXthBtbWwmRGfZFVN-QIevhQjSHdep6_4,3066
|
15
|
+
aplos_nca_saas_sdk/integration_testing/configs/login_config.py,sha256=HqPjYBiagGSKaPFForO_eF0oKQqZzc3WEr4jEzh9kBc,3560
|
16
|
+
aplos_nca_saas_sdk/integration_testing/configs/nca_execution_config.py,sha256=gS9W6nJ4ypgGqWcRTpVHpiEVcKsTuyI6zmvL_U5Bqhs,5769
|
17
|
+
aplos_nca_saas_sdk/integration_testing/files/executions/config1.json,sha256=m6-wSzfrB-7w4CgIGpmT9y0_zevp-Q6So9eXU9HsVpQ,945
|
18
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.csv,sha256=9TGDiMkft7ltFFKk_8RyzuhuloIpe_fZs0Nw0PN3BkM,263
|
19
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.dat,sha256=9TGDiMkft7ltFFKk_8RyzuhuloIpe_fZs0Nw0PN3BkM,263
|
20
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.sas7bdat,sha256=bh4w5QPHwjgLEhk752BmUwztkcBmx8iAywZdiiWZuw0,16384
|
21
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xls,sha256=ymFgWvoUC--OxsXrj2JInjK3eSbR7jnGbpHEpiadNCI,26624
|
22
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xlsx,sha256=i8pOYfA-muNxrtCKfUfi4Hi3JvSx49ZgtfvIUQTzRJo,10481
|
23
|
+
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xpt,sha256=vve5eYrs3nEuGGQgm710tzzYkhrn3cfcy3--CVe4IGs,1920
|
24
|
+
aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=f5kvHEAOmYKUn9gjuVNjEI5t7G8aJSbz3rfIh9133VQ,1567
|
25
|
+
aplos_nca_saas_sdk/integration_testing/tests/app_login_test.py,sha256=NLI4DUICspa_uZi-w2Q3XufDL0ERLVvn1DavNpYDK7I,1650
|
26
|
+
aplos_nca_saas_sdk/integration_testing/tests/file_upload_test.py,sha256=v3-5vEVPVREQDBColJeAGg2grG3c8A4WTxZnE3_ki9c,3936
|
27
|
+
aplos_nca_saas_sdk/integration_testing/tests/nca_analysis_test.py,sha256=RIxarfp_ggD4HgVb8xnMynIDZG2HZ0hmv6sZj1-T73c,3261
|
28
|
+
aplos_nca_saas_sdk/integration_testing/tests/validation_test.py,sha256=68BRZbjPa7p_n5CQeEzSP5hwPAZ921NP8vbmCaCn2pQ,150
|
29
|
+
aplos_nca_saas_sdk/nca_resources/_api_base.py,sha256=qxMSiHV4014L733ii4EJ2JUwQwKkuHi5Rm6cPEdS3cA,1278
|
30
|
+
aplos_nca_saas_sdk/nca_resources/aws_cognito.py,sha256=lc6GCvoTBx_Dmezoxt80xksiuxXjSwkynj-1Sg0vzwY,6576
|
31
|
+
aplos_nca_saas_sdk/nca_resources/aws_s3_presigned_payload.py,sha256=S9LvUEjzJqLYob-JmNXdIe0Uj__fVtcF4LDQB5538vk,2001
|
32
|
+
aplos_nca_saas_sdk/nca_resources/aws_s3_presigned_upload.py,sha256=ExZUjJ4Yyu-oQyVMNtyl7KqxFfr4hIwIN31RFxg6EfM,4476
|
33
|
+
aplos_nca_saas_sdk/nca_resources/nca_analysis.py,sha256=Fx-M7mkNKho0IbxLz7swSgexAlIXm-XeDxFchTOhHrI,10630
|
34
|
+
aplos_nca_saas_sdk/nca_resources/nca_app_configuration.py,sha256=VZNZi0_NV4QjNgBSM9csq5qedc6-qvzaXwXyLfymB6M,1845
|
35
|
+
aplos_nca_saas_sdk/nca_resources/nca_authenticator.py,sha256=3mXHs2zMsvo2zirudpgynC3Y9woFrfkmo3mysqfJyxk,3126
|
36
|
+
aplos_nca_saas_sdk/nca_resources/nca_endpoints.py,sha256=lYtktEG0yXleRoFLkab3fw7MaaaZIjdvPB2iZVlIg1s,2373
|
37
|
+
aplos_nca_saas_sdk/nca_resources/nca_file_download.py,sha256=_ryJta9f6CBOh0OsE6P4FMGZggjYWu_kj1ZuzVVuruc,4190
|
38
|
+
aplos_nca_saas_sdk/nca_resources/nca_file_upload.py,sha256=dqETMtnzYZilPlFfLKW7o3DrrBLObeIGgILWPyD-3ZI,1653
|
39
|
+
aplos_nca_saas_sdk/nca_resources/nca_validations.py,sha256=INv3bIHH3caOjByDknTqogDjqaYmHtZCDldc2AKpqOM,785
|
40
|
+
aplos_nca_saas_sdk/sample_files/analysis_files/single_ev/config.json,sha256=lLnRV0jwzaSn32D8NlOekOF5oGFfUwugUlvlwoKz540,986
|
41
|
+
aplos_nca_saas_sdk/sample_files/analysis_files/single_ev/input.csv,sha256=qFSAlgLOmERsabMmp1X6PAZa-8yFthZlHacM_f7_AOY,6528
|
42
|
+
aplos_nca_saas_sdk/sample_files/analysis_files/single_ev/meta_data.json,sha256=p1KYOAe5Cl3rjtfF1t96oRG-QtFJJCo9otReRPNtvIk,447
|
43
|
+
aplos_nca_saas_sdk/utilities/commandline_args.py,sha256=7HgB4AhQHHovqz_VOf6ndLubPhHQFHX5DhWz7Dx0OMo,10909
|
44
|
+
aplos_nca_saas_sdk/utilities/environment_services.py,sha256=eKlaz-3VAPHUe-MN0rc_AdJfzdiej86vhARE-ulWL5A,3375
|
45
|
+
aplos_nca_saas_sdk/utilities/environment_vars.py,sha256=aXheFXg6FVMaSYLe2LmoWRF5Ks9vwxDazO4XYb4vLjc,1132
|
46
|
+
aplos_nca_saas_sdk/utilities/file_utility.py,sha256=EUvQ65aXN6OdILniuiDQ2rPRA9sFmvUoAehifEjRgUY,1025
|
47
|
+
aplos_nca_saas_sdk/utilities/http_utility.py,sha256=DQ-ClLOmNoyPn5vhrSh4q-2wi4ViP_gplJD9asEKDM8,464
|
48
|
+
aplos_nca_saas_sdk-0.0.14.dist-info/METADATA,sha256=PgddGpVu9ujrhk-ex1uFYOnhzIkwOe-OeUrAR2djf8k,3792
|
49
|
+
aplos_nca_saas_sdk-0.0.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
50
|
+
aplos_nca_saas_sdk-0.0.14.dist-info/licenses/LICENSE,sha256=JQMpBrnqu_m2tISmyh6_dTgb8-m3HNnA51fuOh2TzkE,1076
|
51
|
+
aplos_nca_saas_sdk-0.0.14.dist-info/RECORD,,
|
@@ -1,47 +0,0 @@
|
|
1
|
-
aplos_nca_saas_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
aplos_nca_saas_sdk/version.py,sha256=QS4DGcLLszsg6Z09amX7jk4z-YffH_BMp_53BNMfeCw,172
|
3
|
-
aplos_nca_saas_sdk/aws_resources/aws_cognito.py,sha256=zCfgruORpJnoP6DlF_XW_IfyUfiwPYoWf581aIZi3NM,6584
|
4
|
-
aplos_nca_saas_sdk/aws_resources/aws_s3_presigned_payload.py,sha256=rbTaeUgPpRsw1KV0YjnmkD5sQvlYet9XBj6Ie7nXz5Y,1987
|
5
|
-
aplos_nca_saas_sdk/aws_resources/aws_s3_presigned_upload.py,sha256=ZCAPNtXMXE2-mA9iWJ1xe_DVgeZGv8r0iCLDnJKNmA8,4290
|
6
|
-
aplos_nca_saas_sdk/files/analysis_files/single_ev/configuration_single_ev.json,sha256=lLnRV0jwzaSn32D8NlOekOF5oGFfUwugUlvlwoKz540,986
|
7
|
-
aplos_nca_saas_sdk/files/analysis_files/single_ev/meta_data.json,sha256=p1KYOAe5Cl3rjtfF1t96oRG-QtFJJCo9otReRPNtvIk,447
|
8
|
-
aplos_nca_saas_sdk/files/analysis_files/single_ev/single_ev.csv,sha256=qFSAlgLOmERsabMmp1X6PAZa-8yFthZlHacM_f7_AOY,6528
|
9
|
-
aplos_nca_saas_sdk/integration_testing/integration_test_base.py,sha256=xmxpsUwue_UC7ETr219Oaj24gZKpD6NoPRfg9DeKvk0,2793
|
10
|
-
aplos_nca_saas_sdk/integration_testing/integration_test_configurations.py,sha256=oN9-ne8vtwLprHUqfuWOJ2uKyjvsAHhmdVD7zSNGIC8,1618
|
11
|
-
aplos_nca_saas_sdk/integration_testing/integration_test_factory.py,sha256=qEI0m-kpLL8XTBgQu8Sr-GJ6agRormZ6bhYtQzxaUt4,2198
|
12
|
-
aplos_nca_saas_sdk/integration_testing/integration_test_response.py,sha256=T5cLdrhN9Dncu3SFZ3JpUnpQGGJ_VpvTO3uEz0KjfY0,814
|
13
|
-
aplos_nca_saas_sdk/integration_testing/integration_test_suite.py,sha256=fztqfDzdHe-XvWgtGaqCyk4FvCKVfKd1cXbo3mru7Ys,4212
|
14
|
-
aplos_nca_saas_sdk/integration_testing/main.py,sha256=8mWJCHp9CSjfDv8qAXdDhK8B2XhPGrIOkZHgHM8ACHE,2054
|
15
|
-
aplos_nca_saas_sdk/integration_testing/readme.md,sha256=sX-_gzx17UUF-ZqvCWq0R5zcqgOMC4JjQKnjgxQH9vM,629
|
16
|
-
aplos_nca_saas_sdk/integration_testing/configs/_config_base.py,sha256=O48Y1r8JFe2KvSMTY5EttZAz1-hQsU6-Su6CzDUKDmE,347
|
17
|
-
aplos_nca_saas_sdk/integration_testing/configs/app_settings_config.py,sha256=nlBflWWhFbc-FOq7Bpw6cKyULO6VT_Oe1sUq4lKhHWk,2672
|
18
|
-
aplos_nca_saas_sdk/integration_testing/configs/config_sample.json,sha256=PryYwS3FoQXii53UuAFTN1-yj-PjwhFEDanmJ20wlVo,3586
|
19
|
-
aplos_nca_saas_sdk/integration_testing/configs/file_upload_config.py,sha256=wbApZi1ROwgprIlOvpwtYbQ_YSoGhvBEC2KB4Ddq0Pg,3061
|
20
|
-
aplos_nca_saas_sdk/integration_testing/configs/login_config.py,sha256=FBmmpdDgIO2ldhJ6yHf-ioWXiFmfd3s_i4VXR4pm4Ig,3564
|
21
|
-
aplos_nca_saas_sdk/integration_testing/configs/nca_execution_config.py,sha256=qMsmcn-nMlPlWFBgpdzfnX_eNigp_sTX6lqR2lZmvyw,5764
|
22
|
-
aplos_nca_saas_sdk/integration_testing/files/executions/config1.json,sha256=m6-wSzfrB-7w4CgIGpmT9y0_zevp-Q6So9eXU9HsVpQ,945
|
23
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.csv,sha256=9TGDiMkft7ltFFKk_8RyzuhuloIpe_fZs0Nw0PN3BkM,263
|
24
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.dat,sha256=9TGDiMkft7ltFFKk_8RyzuhuloIpe_fZs0Nw0PN3BkM,263
|
25
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.sas7bdat,sha256=bh4w5QPHwjgLEhk752BmUwztkcBmx8iAywZdiiWZuw0,16384
|
26
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xls,sha256=ymFgWvoUC--OxsXrj2JInjK3eSbR7jnGbpHEpiadNCI,26624
|
27
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xlsx,sha256=i8pOYfA-muNxrtCKfUfi4Hi3JvSx49ZgtfvIUQTzRJo,10481
|
28
|
-
aplos_nca_saas_sdk/integration_testing/files/uploads/input1.xpt,sha256=vve5eYrs3nEuGGQgm710tzzYkhrn3cfcy3--CVe4IGs,1920
|
29
|
-
aplos_nca_saas_sdk/integration_testing/tests/app_configuration_test.py,sha256=rayFz4YcSpBVXr9aZYQSncBg7ohdYjEZpxIc1P7vrNA,1568
|
30
|
-
aplos_nca_saas_sdk/integration_testing/tests/app_login_test.py,sha256=FMKfx4MFoVnfimNUjVsvLqT1FQnt3W-Nd7vvSvPSeg8,1636
|
31
|
-
aplos_nca_saas_sdk/integration_testing/tests/file_upload_test.py,sha256=CBQ80gLX4QpKgUghgsV-2nN94zMhlXsBbFGY2bYY0QQ,5906
|
32
|
-
aplos_nca_saas_sdk/integration_testing/tests/nca_analysis_test.py,sha256=2YvbKZKqPLqbeCMFAmg6Ksey2a6Xn0ZVhDIs5gwwrw0,3258
|
33
|
-
aplos_nca_saas_sdk/integration_testing/tests/validation_test.py,sha256=bDyVvtOKSJdy0sdCVYVuCdUrQYhn8D3peCmM1OCkSVg,145
|
34
|
-
aplos_nca_saas_sdk/nca_resources/nca_analysis.py,sha256=JDI9F6MEpu8WdoZsSnCoU_twFpkKBwn1KIEiMwTvsvw,14877
|
35
|
-
aplos_nca_saas_sdk/nca_resources/nca_app_configuration.py,sha256=mRK_OK2k0q4o4pH11tpeR3yKve7sgw3XTtQ0HG9KKFU,1877
|
36
|
-
aplos_nca_saas_sdk/nca_resources/nca_endpoints.py,sha256=bOY2m9sTMu6UP-eE8rLiPKm22M-j7nLBV2xQFJHa71Q,2247
|
37
|
-
aplos_nca_saas_sdk/nca_resources/nca_file_upload.py,sha256=Kl0E3hJn9_vpcrDf_9fXyJ_44XRAL2w6OapNY29t-gg,1824
|
38
|
-
aplos_nca_saas_sdk/nca_resources/nca_login.py,sha256=d6pflBj73n3KEV_byyVwq5zqkujKWMd9sxf9-xlF6NU,3035
|
39
|
-
aplos_nca_saas_sdk/utilities/commandline_args.py,sha256=oY20-VqeXhvSbD3kkU3llO_1mkiRWLpMXCHRbIQfJjE,10645
|
40
|
-
aplos_nca_saas_sdk/utilities/environment_services.py,sha256=iytCg55G5EoBC9VPZJyLp5bNKy3_P9sYD9v4dCVorRw,3250
|
41
|
-
aplos_nca_saas_sdk/utilities/environment_vars.py,sha256=f-1oqODH-3wFrRONqmnkiL5AiybHe23g9FL4JAUkWEs,1023
|
42
|
-
aplos_nca_saas_sdk/utilities/file_utility.py,sha256=OuVNmkyYNtf7UUHAaQkWEp9Gz8Zo0BsZcNsrUQ4qMXk,1020
|
43
|
-
aplos_nca_saas_sdk/utilities/http_utility.py,sha256=G7fX_VQz0UwHbMYdcSh0KNfGcx2tpCx8bBTj_Iy0-Ww,1061
|
44
|
-
aplos_nca_saas_sdk-0.0.12.dist-info/METADATA,sha256=O5Q6XDLZcv-7bdP27uxurYjn6jzcfa8fq9IkM62597c,3792
|
45
|
-
aplos_nca_saas_sdk-0.0.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
46
|
-
aplos_nca_saas_sdk-0.0.12.dist-info/licenses/LICENSE,sha256=pAZXnNE2dxxwXFIduGyn1gpvPefJtUYOYZOi3yeGG94,1068
|
47
|
-
aplos_nca_saas_sdk-0.0.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|