diff --git a/earthaccess/search.py b/earthaccess/search.py index 3a2b458d..69cc454d 100644 --- a/earthaccess/search.py +++ b/earthaccess/search.py @@ -935,3 +935,11 @@ def doi(self, doi: str) -> Self: ) return self + + def load(self): + # TODO - Handle paging (get all) + self._granules = self.get() + + @property + def granules(self): + return self._granules