asukaminato0721 commented on code in PR #6054:
URL: https://github.com/apache/opendal/pull/6054#discussion_r2051698584


##########
bindings/python/python/opendal/__init__.pyi:
##########
@@ -282,19 +284,31 @@ class AsyncOperator(_Base):
         Returns:
             True if the object exists, False otherwise.
         """
-    async def list(self, path: PathBuf) -> AsyncIterable[Entry]:
+    async def list(
+        self, path: PathBuf, *, start_after: str | None = None
+    ) -> AsyncIterable[Entry]:
         """List the objects at the given path.
 
         Args:
             path (str|Path): The path to the directory.
+            start_after (str | None): The key to start listing from.
 
         Returns:
             An iterable of entries representing the objects in the directory.
         """
-    async def scan(self, path: PathBuf) -> AsyncIterable[Entry]: ...
-    async def presign_stat(
-        self, path: PathBuf, expire_second: int
-    ) -> PresignedRequest:
+    async def scan(

Review Comment:
   So anything to do on this pr?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to