We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed217ad commit 0d6e66cCopy full SHA for 0d6e66c
src/aiooss2/__init__.py
@@ -6,4 +6,16 @@
6
from oss2 import AnonymousAuth, Auth, StsAuth
7
8
from .api import AioBucket, AioService
9
+from .http import AioSession
10
from .iterators import AioBucketIterator, AioObjectIterator
11
+from .resumable import resumable_download, resumable_upload
12
+
13
+__all__ = [
14
+ "AioBucket",
15
+ "AioService",
16
+ "AioSession",
17
+ "AioBucketIterator",
18
+ "AioObjectIterator",
19
+ "resumable_upload",
20
+ "resumable_download",
21
+]
0 commit comments