qmenta-client 1.1.dev1349__py3-none-any.whl → 1.1.dev1378__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
@@ -731,17 +731,17 @@ class Project:
731
731
  Parameters
732
732
  ----------
733
733
  search_condition : dict
734
- - p_n: str Analysis name
735
- - type: str Type
736
- - from_d: str dd.mm.yyyy Date from
737
- - to_d: str dd.mm.yyyy Date to
738
- - qa_status: str pass/fail/nd QC status
739
- - secret_name: str Subject ID
740
- - tags: str
741
- - with_child_analysis: 1 if 1, child analysis of workflows will appear
742
- - id: str ID
743
- - state: running, completed, pending, exception
744
- - username: str
734
+ - p_n: str or None Analysis name
735
+ - type: str or None Type
736
+ - from_d: str or None dd.mm.yyyy Date from
737
+ - to_d: str or None dd.mm.yyyy Date to
738
+ - qa_status: str or None pass/fail/nd QC status
739
+ - secret_name: str or None Subject ID
740
+ - tags: str or None
741
+ - with_child_analysis: 1 or None if 1, child analysis of workflows will appear
742
+ - id: str or None ID
743
+ - state: running, completed, pending, exception or None
744
+ - username: str or None
745
745
 
746
746
  items : List[int]
747
747
  list containing two elements [min, max] that correspond to the
@@ -770,7 +770,7 @@ class Project:
770
770
  for key in search_condition.keys():
771
771
  if key not in search_keys.keys():
772
772
  raise Exception((f"This key '{key}' is not accepted by this" "search condition"))
773
- if not isinstance(search_condition[key], search_keys[key]):
773
+ if not isinstance(search_condition[key], search_keys[key]) and search_condition[key] is not None:
774
774
  raise Exception((f"The key {key} in the search condition" f"is not type {search_keys[key]}"))
775
775
  req_headers = {"X-Range": f"items={items[0]}-{items[1] - 1}"}
776
776
  return platform.parse_response(
@@ -881,17 +881,17 @@ class Project:
881
881
  Parameters
882
882
  ----------
883
883
  search_condition : dict
884
- - p_n: str Analysis name
885
- - type: str Type
886
- - from_d: str dd.mm.yyyy Date from
887
- - to_d: str dd.mm.yyyy Date to
888
- - qa_status: str pass/fail/nd QC status
889
- - secret_name: str Subject ID
890
- - tags: str
891
- - with_child_analysis: 1 if 1, child analysis of workflows will appear
892
- - id: str ID
893
- - state: running, completed, pending, exception
894
- - username: str
884
+ - p_n: str or None Analysis name
885
+ - type: str or None Type
886
+ - from_d: str or None dd.mm.yyyy Date from
887
+ - to_d: str or None dd.mm.yyyy Date to
888
+ - qa_status: str or None pass/fail/nd QC status
889
+ - secret_name: str or None Subject ID
890
+ - tags: str or None
891
+ - with_child_analysis: 1 or None if 1, child analysis of workflows will appear
892
+ - id: str or None ID
893
+ - state: running, completed, pending, exception or None
894
+ - username: str or None
895
895
  items : List[int]
896
896
  list containing two elements [min, max] that correspond to the
897
897
  mininum and maximum range of analysis listed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: qmenta-client
3
- Version: 1.1.dev1349
3
+ Version: 1.1.dev1378
4
4
  Summary: Python client lib to interact with the QMENTA platform.
5
5
  Author: QMENTA
6
6
  Author-email: dev@qmenta.com
@@ -1,10 +1,10 @@
1
1
  qmenta/__init__.py,sha256=jv2YF__bseklT3OWEzlqJ5qE24c4aWd5F4r0TTjOrWQ,65
2
2
  qmenta/client/Account.py,sha256=MEljEy9cmg2uP2FG1d3TZAgfj66EE2_3PQAZ9rvpCXY,9647
3
3
  qmenta/client/File.py,sha256=ZgvSqejIosUt4uoX7opUnPnp5XGEaJNMRwFC0mQVB8k,5344
4
- qmenta/client/Project.py,sha256=xk-C4kf2i7RLsIp3fiwHQzlEOZpb1sL-KqxGqDex8Mc,76953
4
+ qmenta/client/Project.py,sha256=L5FgtgdbbJ6nTLQh2MFEe2YCdrLqKKnZGhBywv_5kBk,77165
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.dev1349.dist-info/METADATA,sha256=RBQVZKHts7FiBDWvv9C5Nf6lCj8I5YH6N_shy1JRBsc,672
9
- qmenta_client-1.1.dev1349.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
10
- qmenta_client-1.1.dev1349.dist-info/RECORD,,
8
+ qmenta_client-1.1.dev1378.dist-info/METADATA,sha256=ZAYS-TWjEdQ_0pkjwAiKvXZmjmQ1knO0GZaWY2SFClY,672
9
+ qmenta_client-1.1.dev1378.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
10
+ qmenta_client-1.1.dev1378.dist-info/RECORD,,