tosnativeclient 1.0.4__cp313-cp313-macosx_11_0_arm64.whl → 1.0.5__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tosnativeclient might be problematic. Click here for more details.
- tosnativeclient/tosnativeclient.cpython-313-darwin.so +0 -0
- tosnativeclient/tosnativeclient.pyi +8 -1
- {tosnativeclient-1.0.4.dist-info → tosnativeclient-1.0.5.dist-info}/METADATA +1 -1
- tosnativeclient-1.0.5.dist-info/RECORD +6 -0
- tosnativeclient-1.0.4.dist-info/RECORD +0 -6
- {tosnativeclient-1.0.4.dist-info → tosnativeclient-1.0.5.dist-info}/WHEEL +0 -0
|
Binary file
|
|
@@ -31,6 +31,8 @@ class ListStream(object):
|
|
|
31
31
|
prefix: str
|
|
32
32
|
delimiter: str
|
|
33
33
|
max_keys: int
|
|
34
|
+
continuation_token: str
|
|
35
|
+
start_after: str
|
|
34
36
|
|
|
35
37
|
def __iter__(self) -> ListStream: ...
|
|
36
38
|
|
|
@@ -38,6 +40,10 @@ class ListStream(object):
|
|
|
38
40
|
|
|
39
41
|
def close(self) -> None: ...
|
|
40
42
|
|
|
43
|
+
def current_prefix(self) -> Optional[str]: ...
|
|
44
|
+
|
|
45
|
+
def current_continuation_token(self) -> Optional[str]: ...
|
|
46
|
+
|
|
41
47
|
|
|
42
48
|
class ReadStream(object):
|
|
43
49
|
bucket: str
|
|
@@ -82,7 +88,8 @@ class TosClient(object):
|
|
|
82
88
|
file_name_prefix: str = '', shared_prefetch_tasks: int = 20):
|
|
83
89
|
...
|
|
84
90
|
|
|
85
|
-
def list_objects(self, bucket: str, prefix: str = '', max_keys: int = 1000, delimiter: str = ''
|
|
91
|
+
def list_objects(self, bucket: str, prefix: str = '', max_keys: int = 1000, delimiter: str = '',
|
|
92
|
+
continuation_token: str = '', start_after: str = '') -> ListStream:
|
|
86
93
|
...
|
|
87
94
|
|
|
88
95
|
def head_object(self, bucket: str, key: str) -> TosObject:
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
tosnativeclient-1.0.5.dist-info/METADATA,sha256=_Lp2qiMFFVKOCzgsMVr7a057yWh0bNind_6tIK5GR-w,406
|
|
2
|
+
tosnativeclient-1.0.5.dist-info/WHEEL,sha256=YLLGMgiebwxzWB63F0KVTBu1H1ad3TdbsHYfFKfk6fc,104
|
|
3
|
+
tosnativeclient/__init__.py,sha256=HMlQnJ7kkLhK35BeX3i1ClGuKnd9TcUQ_jHCpR67kmc,748
|
|
4
|
+
tosnativeclient/tosnativeclient.cpython-313-darwin.so,sha256=ZbIPf8970O2kZmAiYdAsI3hoOVtCBsNaSuSUYIWJaJQ,8492928
|
|
5
|
+
tosnativeclient/tosnativeclient.pyi,sha256=NSvjrhQao5FxcqBlM6nl7rdRLYL5O1t3Ffh-9C8ZcDA,4775
|
|
6
|
+
tosnativeclient-1.0.5.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
tosnativeclient-1.0.4.dist-info/METADATA,sha256=ZWaXIKtQak0QejtyjsBwtbwvwDcNA65jpJPzmZVrgCc,406
|
|
2
|
-
tosnativeclient-1.0.4.dist-info/WHEEL,sha256=YLLGMgiebwxzWB63F0KVTBu1H1ad3TdbsHYfFKfk6fc,104
|
|
3
|
-
tosnativeclient/__init__.py,sha256=HMlQnJ7kkLhK35BeX3i1ClGuKnd9TcUQ_jHCpR67kmc,748
|
|
4
|
-
tosnativeclient/tosnativeclient.cpython-313-darwin.so,sha256=GI_sPR79TDQaBKKvgmj6scjVF3Xps5_nI3yHxWDRyeU,8510304
|
|
5
|
-
tosnativeclient/tosnativeclient.pyi,sha256=lvcdCvTo5OLMObCSQlPOy01OF4-muVDtSwOwoSUvMTo,4536
|
|
6
|
-
tosnativeclient-1.0.4.dist-info/RECORD,,
|
|
File without changes
|