p115client 0.0.5.9.2__py3-none-any.whl → 0.0.5.10__py3-none-any.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.
- p115client/client.py +160 -75
- p115client/const.py +183 -1
- p115client/exception.py +42 -18
- p115client/tool/__init__.py +2 -0
- p115client/tool/attr.py +104 -0
- p115client/tool/download.py +7 -22
- p115client/tool/edit.py +1 -2
- p115client/tool/fs_files.py +4 -13
- p115client/tool/iterdir.py +56 -101
- p115client/tool/life.py +1 -1
- p115client/tool/pool.py +6 -29
- p115client/tool/request.py +1 -0
- p115client/tool/util.py +107 -0
- p115client/tool/xys.py +317 -50
- p115client/type.py +16 -1
- {p115client-0.0.5.9.2.dist-info → p115client-0.0.5.10.dist-info}/METADATA +3 -3
- p115client-0.0.5.10.dist-info/RECORD +26 -0
- p115client-0.0.5.9.2.dist-info/RECORD +0 -24
- {p115client-0.0.5.9.2.dist-info → p115client-0.0.5.10.dist-info}/LICENSE +0 -0
- {p115client-0.0.5.9.2.dist-info → p115client-0.0.5.10.dist-info}/WHEEL +0 -0
p115client/tool/xys.py
CHANGED
@@ -2,45 +2,156 @@
|
|
2
2
|
# encoding: utf-8
|
3
3
|
|
4
4
|
__author__ = "ChenyangGao <https://chenyanggao.github.io>"
|
5
|
-
__all__ = [
|
5
|
+
__all__ = [
|
6
|
+
"wish_info", "wish_make", "wish_answer", "wish_adopt",
|
7
|
+
"wish_del", "wish_iter", "wish_aid_iter",
|
8
|
+
]
|
6
9
|
|
7
|
-
from collections.abc import Iterable
|
10
|
+
from collections.abc import AsyncIterator, Coroutine, Iterable, Iterator
|
11
|
+
from typing import overload, Any, Literal
|
8
12
|
|
13
|
+
from iterutils import run_gen_step, run_gen_step_iter, YieldFrom
|
9
14
|
from p115client import check_response, P115Client
|
15
|
+
from p115client.type import P115StrID
|
10
16
|
|
11
17
|
|
18
|
+
@overload
|
19
|
+
def wish_info(
|
20
|
+
client: str | P115Client,
|
21
|
+
wish_id: str,
|
22
|
+
*,
|
23
|
+
async_: Literal[False] = False,
|
24
|
+
**request_kwargs,
|
25
|
+
) -> dict:
|
26
|
+
...
|
27
|
+
@overload
|
28
|
+
def wish_info(
|
29
|
+
client: str | P115Client,
|
30
|
+
wish_id: str,
|
31
|
+
*,
|
32
|
+
async_: Literal[True],
|
33
|
+
**request_kwargs,
|
34
|
+
) -> Coroutine[Any, Any, dict]:
|
35
|
+
...
|
36
|
+
def wish_info(
|
37
|
+
client: str | P115Client,
|
38
|
+
wish_id: str,
|
39
|
+
*,
|
40
|
+
async_: Literal[False, True] = False,
|
41
|
+
**request_kwargs,
|
42
|
+
) -> dict | Coroutine[Any, Any, dict]:
|
43
|
+
"""许愿树活动:许愿信息
|
44
|
+
|
45
|
+
:param client: 115 客户端或 cookies
|
46
|
+
:param wish_id: 许愿 id
|
47
|
+
:param async_: 是否异步
|
48
|
+
:param request_kwargs: 其它请求参数
|
49
|
+
|
50
|
+
:return: 许愿信息
|
51
|
+
"""
|
52
|
+
if isinstance(client, str):
|
53
|
+
client = P115Client(client)
|
54
|
+
def gen_step():
|
55
|
+
resp = yield client.act_xys_get_desire_info(
|
56
|
+
wish_id,
|
57
|
+
async_=async_,
|
58
|
+
**request_kwargs,
|
59
|
+
)
|
60
|
+
check_response(resp)
|
61
|
+
return resp["data"]
|
62
|
+
return run_gen_step(gen_step, async_=async_)
|
63
|
+
|
64
|
+
|
65
|
+
@overload
|
66
|
+
def wish_make(
|
67
|
+
client: str | P115Client,
|
68
|
+
content: str = "随便许个愿",
|
69
|
+
size: int = 5,
|
70
|
+
*,
|
71
|
+
async_: Literal[False] = False,
|
72
|
+
**request_kwargs,
|
73
|
+
) -> P115StrID:
|
74
|
+
...
|
75
|
+
@overload
|
76
|
+
def wish_make(
|
77
|
+
client: str | P115Client,
|
78
|
+
content: str = "随便许个愿",
|
79
|
+
size: int = 5,
|
80
|
+
*,
|
81
|
+
async_: Literal[True],
|
82
|
+
**request_kwargs,
|
83
|
+
) -> Coroutine[Any, Any, P115StrID]:
|
84
|
+
...
|
12
85
|
def wish_make(
|
13
86
|
client: str | P115Client,
|
14
87
|
content: str = "随便许个愿",
|
15
88
|
size: int = 5,
|
16
|
-
|
89
|
+
*,
|
90
|
+
async_: Literal[False, True] = False,
|
91
|
+
**request_kwargs,
|
92
|
+
) -> P115StrID | Coroutine[Any, Any, P115StrID]:
|
17
93
|
"""许愿树活动:创建许愿(许愿创建后需要等审核)
|
18
94
|
|
19
95
|
:param client: 115 客户端或 cookies
|
20
96
|
:param content: 许愿内容
|
21
97
|
:param size: 答谢空间大小,单位是 GB
|
98
|
+
:param async_: 是否异步
|
99
|
+
:param request_kwargs: 其它请求参数
|
22
100
|
|
23
101
|
:return: 许愿 id
|
24
102
|
"""
|
25
103
|
if isinstance(client, str):
|
26
104
|
client = P115Client(client)
|
27
|
-
|
28
|
-
|
29
|
-
|
105
|
+
def gen_step():
|
106
|
+
resp = yield client.act_xys_wish(
|
107
|
+
{"rewardSpace": size, "content": content},
|
108
|
+
async_=async_,
|
109
|
+
**request_kwargs,
|
110
|
+
)
|
111
|
+
check_response(resp)
|
112
|
+
return P115StrID(resp["data"]["xys_id"], resp["data"])
|
113
|
+
return run_gen_step(gen_step, async_=async_)
|
30
114
|
|
31
115
|
|
116
|
+
@overload
|
32
117
|
def wish_answer(
|
33
118
|
client: str | P115Client,
|
34
119
|
wish_id: str,
|
35
120
|
content: str = "帮你助个愿",
|
36
121
|
file_ids: int | str | Iterable[int | str] = "",
|
37
|
-
|
122
|
+
*,
|
123
|
+
async_: Literal[False] = False,
|
124
|
+
**request_kwargs,
|
125
|
+
) -> P115StrID:
|
126
|
+
...
|
127
|
+
@overload
|
128
|
+
def wish_answer(
|
129
|
+
client: str | P115Client,
|
130
|
+
wish_id: str,
|
131
|
+
content: str = "帮你助个愿",
|
132
|
+
file_ids: int | str | Iterable[int | str] = "",
|
133
|
+
*,
|
134
|
+
async_: Literal[True],
|
135
|
+
**request_kwargs,
|
136
|
+
) -> Coroutine[Any, Any, P115StrID]:
|
137
|
+
...
|
138
|
+
def wish_answer(
|
139
|
+
client: str | P115Client,
|
140
|
+
wish_id: str,
|
141
|
+
content: str = "帮你助个愿",
|
142
|
+
file_ids: int | str | Iterable[int | str] = "",
|
143
|
+
*,
|
144
|
+
async_: Literal[False, True] = False,
|
145
|
+
**request_kwargs,
|
146
|
+
) -> P115StrID | Coroutine[Any, Any, P115StrID]:
|
38
147
|
"""许愿树活动:创建助愿(助愿创建后需要等审核)
|
39
148
|
|
40
149
|
:param client: 115 客户端或 cookies
|
41
150
|
:param wish_id: 许愿 id
|
42
151
|
:param content: 助愿内容
|
43
152
|
:param file_ids: 文件在你的网盘的 id,多个用逗号 "," 隔开
|
153
|
+
:param async_: 是否异步
|
154
|
+
:param request_kwargs: 其它请求参数
|
44
155
|
|
45
156
|
:return: 助愿 id
|
46
157
|
"""
|
@@ -48,78 +159,234 @@ def wish_answer(
|
|
48
159
|
client = P115Client(client)
|
49
160
|
if not isinstance(file_ids, (int, str)):
|
50
161
|
file_ids = ",".join(map(str, file_ids))
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
162
|
+
def gen_step():
|
163
|
+
resp = yield client.act_xys_aid_desire(
|
164
|
+
{"id": wish_id, "content": content, "file_ids": file_ids},
|
165
|
+
async_=async_,
|
166
|
+
**request_kwargs,
|
167
|
+
)
|
168
|
+
check_response(resp)
|
169
|
+
return P115StrID(resp["data"]["aid_id"], resp["data"])
|
170
|
+
return run_gen_step(gen_step, async_=async_)
|
55
171
|
|
56
172
|
|
57
|
-
|
173
|
+
@overload
|
174
|
+
def wish_adopt(
|
58
175
|
client: str | P115Client,
|
59
|
-
|
60
|
-
|
61
|
-
|
176
|
+
wish_id: str,
|
177
|
+
aid_id: int | str,
|
178
|
+
to_cid: int = 0,
|
179
|
+
*,
|
180
|
+
async_: Literal[False] = False,
|
181
|
+
**request_kwargs,
|
182
|
+
) -> dict:
|
183
|
+
...
|
184
|
+
@overload
|
185
|
+
def wish_adopt(
|
186
|
+
client: str | P115Client,
|
187
|
+
wish_id: str,
|
188
|
+
aid_id: int | str,
|
189
|
+
to_cid: int = 0,
|
190
|
+
*,
|
191
|
+
async_: Literal[True],
|
192
|
+
**request_kwargs,
|
193
|
+
) -> Coroutine[Any, Any, dict]:
|
194
|
+
...
|
195
|
+
def wish_adopt(
|
196
|
+
client: str | P115Client,
|
197
|
+
wish_id: str,
|
198
|
+
aid_id: int | str,
|
199
|
+
to_cid: int = 0,
|
200
|
+
*,
|
201
|
+
async_: Literal[False, True] = False,
|
202
|
+
**request_kwargs,
|
203
|
+
) -> dict | Coroutine[Any, Any, dict]:
|
204
|
+
"""许愿树活动:采纳助愿
|
62
205
|
|
63
206
|
:param client: 115 客户端或 cookies
|
64
|
-
:param
|
65
|
-
|
66
|
-
|
67
|
-
|
207
|
+
:param wish_id: 许愿 id
|
208
|
+
:param aid_id: 助愿 id
|
209
|
+
:param to_cid: 助愿的分享文件保存到你的网盘中目录的 id
|
210
|
+
:param async_: 是否异步
|
211
|
+
:param request_kwargs: 其它请求参数
|
68
212
|
|
69
|
-
:return:
|
213
|
+
:return: 接口的返回信息
|
70
214
|
"""
|
71
215
|
if isinstance(client, str):
|
72
216
|
client = P115Client(client)
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
ls.extend(adds)
|
79
|
-
return ls
|
217
|
+
return check_response(client.act_xys_adopt(
|
218
|
+
{"did": wish_id, "aid": aid_id, "to_cid": to_cid},
|
219
|
+
async_=async_,
|
220
|
+
**request_kwargs,
|
221
|
+
))
|
80
222
|
|
81
223
|
|
82
|
-
|
224
|
+
@overload
|
225
|
+
def wish_del(
|
83
226
|
client: str | P115Client,
|
84
|
-
wish_id: str,
|
85
|
-
|
86
|
-
|
227
|
+
wish_id: str | Iterable[str],
|
228
|
+
*,
|
229
|
+
async_: Literal[False] = False,
|
230
|
+
**request_kwargs,
|
231
|
+
) -> dict:
|
232
|
+
...
|
233
|
+
@overload
|
234
|
+
def wish_del(
|
235
|
+
client: str | P115Client,
|
236
|
+
wish_id: str | Iterable[str],
|
237
|
+
*,
|
238
|
+
async_: Literal[True],
|
239
|
+
**request_kwargs,
|
240
|
+
) -> Coroutine[Any, Any, dict]:
|
241
|
+
...
|
242
|
+
def wish_del(
|
243
|
+
client: str | P115Client,
|
244
|
+
wish_id: str | Iterable[str],
|
245
|
+
*,
|
246
|
+
async_: Literal[False, True] = False,
|
247
|
+
**request_kwargs,
|
248
|
+
) -> dict | Coroutine[Any, Any, dict]:
|
249
|
+
"""许愿树活动:许愿信息
|
87
250
|
|
88
251
|
:param client: 115 客户端或 cookies
|
89
252
|
:param wish_id: 许愿 id
|
253
|
+
:param async_: 是否异步
|
254
|
+
:param request_kwargs: 其它请求参数
|
90
255
|
|
91
|
-
:return:
|
256
|
+
:return: 接口的返回信息
|
92
257
|
"""
|
93
258
|
if isinstance(client, str):
|
94
259
|
client = P115Client(client)
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
260
|
+
if not isinstance(wish_id, str):
|
261
|
+
wish_id = ",".join(wish_id)
|
262
|
+
return check_response(client.act_xys_wish_del(
|
263
|
+
wish_id,
|
264
|
+
async_=async_,
|
265
|
+
**request_kwargs,
|
266
|
+
))
|
102
267
|
|
103
268
|
|
104
|
-
|
269
|
+
@overload
|
270
|
+
def wish_iter(
|
271
|
+
client: str | P115Client,
|
272
|
+
type: int = 0,
|
273
|
+
page_size: int = 1_000,
|
274
|
+
*,
|
275
|
+
async_: Literal[False] = False,
|
276
|
+
**request_kwargs,
|
277
|
+
) -> Iterator[dict]:
|
278
|
+
...
|
279
|
+
@overload
|
280
|
+
def wish_iter(
|
281
|
+
client: str | P115Client,
|
282
|
+
type: int = 0,
|
283
|
+
page_size: int = 1_000,
|
284
|
+
*,
|
285
|
+
async_: Literal[True],
|
286
|
+
**request_kwargs,
|
287
|
+
) -> AsyncIterator[dict]:
|
288
|
+
...
|
289
|
+
def wish_iter(
|
290
|
+
client: str | P115Client,
|
291
|
+
type: int = 0,
|
292
|
+
page_size: int = 1_000,
|
293
|
+
*,
|
294
|
+
async_: Literal[False, True] = False,
|
295
|
+
**request_kwargs,
|
296
|
+
) -> Iterator[dict] | AsyncIterator[dict]:
|
297
|
+
"""许愿树活动:罗列我的许愿列表
|
298
|
+
|
299
|
+
:param client: 115 客户端或 cookies
|
300
|
+
:param type: 类型
|
301
|
+
|
302
|
+
- 0: 全部
|
303
|
+
- 1: 进行中
|
304
|
+
- 2: 已实现
|
305
|
+
|
306
|
+
:param page_size: 分页大小
|
307
|
+
:param async_: 是否异步
|
308
|
+
:param request_kwargs: 其它请求参数
|
309
|
+
|
310
|
+
:return: 迭代器,逐个返回许愿许愿信息
|
311
|
+
"""
|
312
|
+
if isinstance(client, str):
|
313
|
+
client = P115Client(client)
|
314
|
+
if page_size <= 0:
|
315
|
+
page_size = 1_000
|
316
|
+
def gen_step():
|
317
|
+
payload: dict = {"type": type, "limit": page_size, "page": 1}
|
318
|
+
while True:
|
319
|
+
resp = yield client.act_xys_my_desire(
|
320
|
+
payload,
|
321
|
+
async_=async_,
|
322
|
+
**request_kwargs,
|
323
|
+
)
|
324
|
+
check_response(resp)
|
325
|
+
ls = resp["data"]["list"]
|
326
|
+
yield YieldFrom(ls, identity=True)
|
327
|
+
if not ls:
|
328
|
+
break
|
329
|
+
payload["page"] += 1
|
330
|
+
return run_gen_step_iter(gen_step, async_=async_)
|
331
|
+
|
332
|
+
|
333
|
+
@overload
|
334
|
+
def wish_aid_iter(
|
105
335
|
client: str | P115Client,
|
106
336
|
wish_id: str,
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
337
|
+
page_size: int = 1_000,
|
338
|
+
*,
|
339
|
+
async_: Literal[False] = False,
|
340
|
+
**request_kwargs,
|
341
|
+
) -> Iterator[dict]:
|
342
|
+
...
|
343
|
+
@overload
|
344
|
+
def wish_aid_iter(
|
345
|
+
client: str | P115Client,
|
346
|
+
wish_id: str,
|
347
|
+
page_size: int = 1_000,
|
348
|
+
*,
|
349
|
+
async_: Literal[True],
|
350
|
+
**request_kwargs,
|
351
|
+
) -> AsyncIterator[dict]:
|
352
|
+
...
|
353
|
+
def wish_aid_iter(
|
354
|
+
client: str | P115Client,
|
355
|
+
wish_id: str,
|
356
|
+
page_size: int = 1_000,
|
357
|
+
*,
|
358
|
+
async_: Literal[False, True] = False,
|
359
|
+
**request_kwargs,
|
360
|
+
) -> Iterator[dict] | AsyncIterator[dict]:
|
361
|
+
"""许愿树活动:许愿的助愿列表
|
111
362
|
|
112
363
|
:param client: 115 客户端或 cookies
|
113
364
|
:param wish_id: 许愿 id
|
114
|
-
:param
|
115
|
-
:param
|
365
|
+
:param page_size: 分页大小
|
366
|
+
:param async_: 是否异步
|
367
|
+
:param request_kwargs: 其它请求参数
|
116
368
|
|
117
|
-
:return:
|
369
|
+
:return: 迭代器,逐个返回助愿信息
|
118
370
|
"""
|
119
371
|
if isinstance(client, str):
|
120
372
|
client = P115Client(client)
|
121
|
-
|
373
|
+
if page_size <= 0:
|
374
|
+
page_size = 1_000
|
375
|
+
def gen_step():
|
376
|
+
payload: dict = {"id": wish_id, "limit": page_size, "page": 1}
|
377
|
+
while True:
|
378
|
+
resp = yield client.act_xys_desire_aid_list(
|
379
|
+
payload,
|
380
|
+
async_=async_,
|
381
|
+
**request_kwargs,
|
382
|
+
)
|
383
|
+
check_response(resp)
|
384
|
+
ls = resp["data"]["list"]
|
385
|
+
yield YieldFrom(ls, identity=True)
|
386
|
+
if not ls:
|
387
|
+
break
|
388
|
+
payload["page"] += 1
|
389
|
+
return run_gen_step_iter(gen_step, async_=async_)
|
122
390
|
|
123
|
-
# TODO: 再实现一个漂流瓶
|
124
|
-
# TODO: 支持异步
|
125
391
|
|
392
|
+
# TODO: 再实现一个漂流瓶
|
p115client/type.py
CHANGED
@@ -2,7 +2,10 @@
|
|
2
2
|
# encoding: utf-8
|
3
3
|
|
4
4
|
__author__ = "ChenyangGao <https://chenyanggao.github.io>"
|
5
|
-
__all__ = [
|
5
|
+
__all__ = [
|
6
|
+
"MultipartResumeData", "P115Cookies", "P115DictAttrLikeMixin", "P115DictAttrLike",
|
7
|
+
"P115ID", "P115StrID", "P115URL",
|
8
|
+
]
|
6
9
|
|
7
10
|
from collections.abc import Callable
|
8
11
|
from functools import cached_property
|
@@ -199,6 +202,18 @@ class P115DictAttrLike(P115DictAttrLikeMixin):
|
|
199
202
|
return type(name, (base, cls), ns)
|
200
203
|
|
201
204
|
|
205
|
+
class P115ID(P115DictAttrLike, int):
|
206
|
+
"""整数 id 的封装
|
207
|
+
"""
|
208
|
+
def __str__(self, /) -> str:
|
209
|
+
return int.__repr__(self)
|
210
|
+
|
211
|
+
|
212
|
+
class P115StrID(P115DictAttrLike, str):
|
213
|
+
"""字符串 id 的封装
|
214
|
+
"""
|
215
|
+
|
216
|
+
|
202
217
|
class P115URL(P115DictAttrLike, str):
|
203
218
|
"""下载链接的封装
|
204
219
|
"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: p115client
|
3
|
-
Version: 0.0.5.
|
3
|
+
Version: 0.0.5.10
|
4
4
|
Summary: Python 115 webdisk client.
|
5
5
|
Home-page: https://github.com/ChenyangGao/p115client
|
6
6
|
License: MIT
|
@@ -108,7 +108,7 @@ client = P115Client(Path("~/115-cookies.txt").expanduser(), check_for_relogin=Tr
|
|
108
108
|
|
109
109
|
如果你有一个申请通过的开放接口的应用,则可以创建开放接口的客户端实例
|
110
110
|
|
111
|
-
你可以直接从一个 `P115Client`
|
111
|
+
你可以直接从一个 `P115Client` 实例拿到授权(自动扫码登录并授权),如果不提供 `app_id`,则使用默认值
|
112
112
|
|
113
113
|
```python
|
114
114
|
app_id = <开放接口应用的 AppID>
|
@@ -143,7 +143,7 @@ from p115client import P115Client, P115OpenClient
|
|
143
143
|
from pathlib import Path
|
144
144
|
|
145
145
|
client = P115Client(Path("~/115-cookies.txt").expanduser(), check_for_relogin=True)
|
146
|
-
client_open = client.login_another_open(
|
146
|
+
client_open = client.login_another_open()
|
147
147
|
```
|
148
148
|
|
149
149
|
### 2. 接口调用
|
@@ -0,0 +1,26 @@
|
|
1
|
+
LICENSE,sha256=o5242_N2TgDsWwFhPn7yr8YJNF7XsJM5NxUMtcT97bc,1100
|
2
|
+
p115client/__init__.py,sha256=1mx7njuAlqcuEWONTjSiiGnXyyNyqOcJyNX1FMHqQ-4,214
|
3
|
+
p115client/_upload.py,sha256=DOckFLU_P7Fl0BNu_0-2od6pPsCnzroYY6zZE5_EMnM,30735
|
4
|
+
p115client/client.py,sha256=kT_DPoYMSm4Tjq6MKz0pWoBcsl6EqtYtyykDN9ucG6A,727114
|
5
|
+
p115client/const.py,sha256=kUUULzidgJgMZmCwWpj4X1pGN38tNRt3iXt2-4wAARs,7614
|
6
|
+
p115client/exception.py,sha256=kQMI7lwkFIC_tRuj1HT8zqi5HGzz6fTxgK7B1aKrNTI,3447
|
7
|
+
p115client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
+
p115client/tool/__init__.py,sha256=NjT9rroMhLwKI7UlpSCksSsnB3GexXzxvhfunNWzjY0,386
|
9
|
+
p115client/tool/attr.py,sha256=u_5JM2LlWFT4IHF2zlz-DY4llgmw4mwouEKMae8BZdQ,2841
|
10
|
+
p115client/tool/download.py,sha256=3zoxkLPf4Jya-wYowZJmZR65sR3GWNWNmnevKrrgvQY,60509
|
11
|
+
p115client/tool/edit.py,sha256=eRlR1UZMpfGnoetpqSAAx5bPBOEiSlx7HPkpOSs5agk,17739
|
12
|
+
p115client/tool/export_dir.py,sha256=iMnKtnESi8HKvW9WhIvOdEoMXSBpAnhFlGeyKXHpQbE,24545
|
13
|
+
p115client/tool/fs_files.py,sha256=jY57L4nhB9t-2kT_1j3mdiwOdPZKsimN3eN5mUJAqMI,15745
|
14
|
+
p115client/tool/history.py,sha256=2S26BH7uBNfVHlbYFNy-aNOLMcM-HrlR7TLHAZacUJI,7458
|
15
|
+
p115client/tool/iterdir.py,sha256=6-ke9yNY3mqHmzEapXk3lYwl3XRkWLH2D_nqJ1nq8Tk,186120
|
16
|
+
p115client/tool/life.py,sha256=X6Bp0GYKwnZeWlttE2DIVw5iOCXM5QzIkM6Zuj24c5Y,17323
|
17
|
+
p115client/tool/pool.py,sha256=zftRR74IR_5zHigJtaImxGYt81rqCAn_V5Nm7HBMj68,13943
|
18
|
+
p115client/tool/request.py,sha256=rjXuQwRganE5Z-4rfgnyPFjE4jzdQSLdIs9s0cIDshU,7043
|
19
|
+
p115client/tool/upload.py,sha256=qK1OQYxP-Faq2eMDhc5sBXJiSr8m8EZ_gb0O_iA2TrI,15915
|
20
|
+
p115client/tool/util.py,sha256=QrB4CIvIBEhl_MGSPSAenkY76WjEUHdcUjpccdc8x_A,3347
|
21
|
+
p115client/tool/xys.py,sha256=R33x55sK2IfgaLn2mqSXGFcFYTCnnUHU5xPRZnQHIV8,10140
|
22
|
+
p115client/type.py,sha256=7kOp98uLaYqcTTCgCrb3DRcl8ukMpn7ibsnVvtw2nG8,6250
|
23
|
+
p115client-0.0.5.10.dist-info/LICENSE,sha256=o5242_N2TgDsWwFhPn7yr8YJNF7XsJM5NxUMtcT97bc,1100
|
24
|
+
p115client-0.0.5.10.dist-info/METADATA,sha256=oVxKZ1zkaS1YXvgjyp8g_gKEC501-4170wONzwGXJz0,8274
|
25
|
+
p115client-0.0.5.10.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
26
|
+
p115client-0.0.5.10.dist-info/RECORD,,
|
@@ -1,24 +0,0 @@
|
|
1
|
-
LICENSE,sha256=o5242_N2TgDsWwFhPn7yr8YJNF7XsJM5NxUMtcT97bc,1100
|
2
|
-
p115client/__init__.py,sha256=1mx7njuAlqcuEWONTjSiiGnXyyNyqOcJyNX1FMHqQ-4,214
|
3
|
-
p115client/_upload.py,sha256=DOckFLU_P7Fl0BNu_0-2od6pPsCnzroYY6zZE5_EMnM,30735
|
4
|
-
p115client/client.py,sha256=XsOy9BVOqu2jof7rGIMUldVZSiuQNAku379kIiZPr-E,721350
|
5
|
-
p115client/const.py,sha256=maIZfJAiUuEnXIKc8TMAyW_UboDUJPwYpPS8LjPFp_U,4321
|
6
|
-
p115client/exception.py,sha256=Ugjr__aSlYRDYwoOz7273ngV-gFX2z-ohsJmCba8nnQ,2657
|
7
|
-
p115client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
|
-
p115client/tool/__init__.py,sha256=x1x4yt3Ylim5CbFO4M-Fu62Gd99pUFpb3-5ssL6l-_Y,346
|
9
|
-
p115client/tool/download.py,sha256=DneVsbryn4d47RkS62ghF5Xz8vkDq6U0n2hj1W5g4iY,61176
|
10
|
-
p115client/tool/edit.py,sha256=3hQ5J3hHQx4yNsGcWSechBYAvZRSQUxfXLXuqXiDKmk,17789
|
11
|
-
p115client/tool/export_dir.py,sha256=iMnKtnESi8HKvW9WhIvOdEoMXSBpAnhFlGeyKXHpQbE,24545
|
12
|
-
p115client/tool/fs_files.py,sha256=hkezLKrtTAGPDkPxwq6jMrm8s2-unHZQBR7cDvh41qs,16027
|
13
|
-
p115client/tool/history.py,sha256=2S26BH7uBNfVHlbYFNy-aNOLMcM-HrlR7TLHAZacUJI,7458
|
14
|
-
p115client/tool/iterdir.py,sha256=T6bsD8A896nHgVxKYu2dkIo-5Az2svL4iLm2uHQWyHg,187517
|
15
|
-
p115client/tool/life.py,sha256=9ncoB2dNibhgOjPb9mHr873fCZmb65ZeteVLH4Tsujc,17330
|
16
|
-
p115client/tool/pool.py,sha256=eT_feALidGdvSFppivxC1f_ipR42fWav-X1sutdpkco,14608
|
17
|
-
p115client/tool/request.py,sha256=SWsezW9EYZGS3R-TbZxMG-8bN3YWJ0-GzgvKlvRBSCM,7042
|
18
|
-
p115client/tool/upload.py,sha256=qK1OQYxP-Faq2eMDhc5sBXJiSr8m8EZ_gb0O_iA2TrI,15915
|
19
|
-
p115client/tool/xys.py,sha256=n89n9OLBXx6t20L61wJgfrP6V4jW3sHgyaQNBLdUwUQ,3578
|
20
|
-
p115client/type.py,sha256=e4g9URQBE23XN2dGomldj8wC6NlDWBBSVC5Bmd8giBc,5993
|
21
|
-
p115client-0.0.5.9.2.dist-info/LICENSE,sha256=o5242_N2TgDsWwFhPn7yr8YJNF7XsJM5NxUMtcT97bc,1100
|
22
|
-
p115client-0.0.5.9.2.dist-info/METADATA,sha256=8vmEXLm19uixJNroYL5l1GaUcXOjO-Ne-LUyKMGxIx0,8233
|
23
|
-
p115client-0.0.5.9.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
24
|
-
p115client-0.0.5.9.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|