qmenta-client 1.1.dev1410__py3-none-any.whl → 1.1.dev1429__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.
qmenta/client/Project.py
CHANGED
|
@@ -1486,7 +1486,8 @@ class Project:
|
|
|
1486
1486
|
analysis_name_or_id = int(analysis_name_or_id)
|
|
1487
1487
|
else:
|
|
1488
1488
|
search_tag = "p_n"
|
|
1489
|
-
excluded_characters = ["\\", "[", "
|
|
1489
|
+
excluded_characters = ["\\", "[", "]", "(", ")",
|
|
1490
|
+
"{", "}", "+", "*"]
|
|
1490
1491
|
excluded_bool = [character in analysis_name_or_id for character in excluded_characters]
|
|
1491
1492
|
if any(excluded_bool):
|
|
1492
1493
|
raise Exception(f"p_n does not allow characters {excluded_characters}")
|
|
@@ -1536,7 +1537,7 @@ class Project:
|
|
|
1536
1537
|
- secret_name: str or None Subject ID
|
|
1537
1538
|
- tags: str or None
|
|
1538
1539
|
- with_child_analysis: 1 or None if 1, child analysis of workflows will appear
|
|
1539
|
-
- id:
|
|
1540
|
+
- id: int or None ID
|
|
1540
1541
|
- state: running, completed, pending, exception or None
|
|
1541
1542
|
- username: str or None
|
|
1542
1543
|
|
|
@@ -1570,7 +1571,8 @@ class Project:
|
|
|
1570
1571
|
if not isinstance(search_condition[key], search_keys[key]) and search_condition[key] is not None:
|
|
1571
1572
|
raise Exception((f"The key {key} in the search condition" f"is not type {search_keys[key]}"))
|
|
1572
1573
|
if "p_n" == key:
|
|
1573
|
-
excluded_characters = ["\\", "[", "
|
|
1574
|
+
excluded_characters = ["\\", "[", "]", "(", ")",
|
|
1575
|
+
"{", "}", "+", "*"]
|
|
1574
1576
|
excluded_bool = [character in search_condition["p_n"] for character in excluded_characters]
|
|
1575
1577
|
if any(excluded_bool):
|
|
1576
1578
|
raise Exception(f"p_n does not allow characters {excluded_characters}")
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
qmenta/__init__.py,sha256=jv2YF__bseklT3OWEzlqJ5qE24c4aWd5F4r0TTjOrWQ,65
|
|
2
2
|
qmenta/client/Account.py,sha256=S9D0-lmcBln2o3DwJfmLfu5G2wjE7gEJCIeJu89v0Is,9647
|
|
3
3
|
qmenta/client/File.py,sha256=ZgvSqejIosUt4uoX7opUnPnp5XGEaJNMRwFC0mQVB8k,5344
|
|
4
|
-
qmenta/client/Project.py,sha256=
|
|
4
|
+
qmenta/client/Project.py,sha256=HQic19KCmO2lzCR22zKSZyIbxBryRgs2wWx9CoRKrgM,80034
|
|
5
5
|
qmenta/client/Subject.py,sha256=lhxxVdQ6d-GNoQC8mrJwa4L1f44nJc4PcJtDspmKN7I,8756
|
|
6
6
|
qmenta/client/__init__.py,sha256=AjTojBhZeW5nl0i605KS8S1Gl5tPNc1hdzD47BGNfoI,147
|
|
7
7
|
qmenta/client/utils.py,sha256=5DK2T_HQprrCwLS0Ycm2CjseaYmAUKaJkJvYoW-Rqzc,2479
|
|
8
|
-
qmenta_client-1.1.
|
|
9
|
-
qmenta_client-1.1.
|
|
10
|
-
qmenta_client-1.1.
|
|
8
|
+
qmenta_client-1.1.dev1429.dist-info/METADATA,sha256=8UPEmMeW8-HeEXF2UmIL-A5F5HghF18xFyp57bmO8JM,672
|
|
9
|
+
qmenta_client-1.1.dev1429.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
10
|
+
qmenta_client-1.1.dev1429.dist-info/RECORD,,
|
|
File without changes
|