@@ -19,7 +19,7 @@ def search(
19
19
spin_multiplicity : int | None = None ,
20
20
nelements : tuple [int , int ] | None = None ,
21
21
chemsys : str | list [str ] | None = None ,
22
- deprecated : bool | None = None ,
22
+ # deprecated: bool | None = None,
23
23
elements : list [str ] | None = None ,
24
24
exclude_elements : list [str ] | None = None ,
25
25
formula : str | list [str ] | None = None ,
@@ -52,7 +52,7 @@ def search(
52
52
# ["wB97X-V/def2-TZVPPD/SMD(VACUUM)", "wB97M-V/def2-QZVPPD/SMD(SOLVENT=WATER)"])
53
53
chemsys (str, List[str]): A chemical system, list of chemical systems
54
54
(e.g., Li-C-O, [C-O-H-N, Li-N]).
55
- deprecated (bool): Whether the material is tagged as deprecated.
55
+ # deprecated (bool): Whether the material is tagged as deprecated.
56
56
elements (List[str]): A list of elements.
57
57
exclude_elements (List(str)): List of elements to exclude.
58
58
formula (str, List[str]): An alphabetical formula or list of formulas
@@ -98,8 +98,8 @@ def search(
98
98
if spin_multiplicity :
99
99
query_params .update ({"spin_multiplicity" : spin_multiplicity })
100
100
101
- if deprecated is not None :
102
- query_params .update ({"deprecated" : deprecated })
101
+ # if deprecated is not None:
102
+ # query_params.update({"deprecated": deprecated})
103
103
104
104
if formula :
105
105
if isinstance (formula , str ):
0 commit comments