We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c71a95 commit 44ae43eCopy full SHA for 44ae43e
mp_api/client/mprester.py
@@ -395,16 +395,6 @@ def __getattr__(self, attr):
395
f"{self.__class__.__name__!r} object has no attribute {attr!r}"
396
)
397
398
- def __getattribute__(self, attr):
399
- if "molecules" in attr:
400
- warnings.warn(
401
- "NOTE: You are accessing a new set of molecules data to be officially released very soon. "
402
- "This dataset includes many new properties, and is designed to be more easily expanded. "
403
- "For the previous (legacy) molecules data, use the MPRester.molecules.jcesr rester. "
404
- )
405
-
406
- return super().__getattribute__(attr)
407
408
def __dir__(self):
409
return dir(MPRester) + self._deprecated_attributes + ["materials", "molecules"]
410
0 commit comments