p115client 0.0.5.14__tar.gz → 0.0.5.14.1__tar.gz
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-0.0.5.14 → p115client-0.0.5.14.1}/PKG-INFO +2 -2
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/iterdir.py +2 -2
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/pyproject.toml +2 -2
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/LICENSE +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/__init__.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/_upload.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/client.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/const.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/exception.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/py.typed +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/__init__.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/attr.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/auth.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/download.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/edit.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/export_dir.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/fs_files.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/history.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/life.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/offline.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/pool.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/request.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/upload.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/util.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/tool/xys.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/p115client/type.py +0 -0
- {p115client-0.0.5.14 → p115client-0.0.5.14.1}/readme.md +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: p115client
|
3
|
-
Version: 0.0.5.14
|
3
|
+
Version: 0.0.5.14.1
|
4
4
|
Summary: Python 115 webdisk client.
|
5
5
|
Home-page: https://github.com/ChenyangGao/p115client
|
6
6
|
License: MIT
|
@@ -29,7 +29,7 @@ Requires-Dist: iter_collect (>=0.0.5.1)
|
|
29
29
|
Requires-Dist: multidict
|
30
30
|
Requires-Dist: orjson
|
31
31
|
Requires-Dist: p115cipher (>=0.0.3)
|
32
|
-
Requires-Dist: p115pickcode (>=0.0.
|
32
|
+
Requires-Dist: p115pickcode (>=0.0.4)
|
33
33
|
Requires-Dist: posixpatht (>=0.0.3)
|
34
34
|
Requires-Dist: python-argtools (>=0.0.1)
|
35
35
|
Requires-Dist: python-asynctools (>=0.1.3)
|
@@ -3501,7 +3501,7 @@ def iter_files_shortcut(
|
|
3501
3501
|
async_: Literal[False, True] = False,
|
3502
3502
|
**request_kwargs,
|
3503
3503
|
) -> Iterator[dict] | AsyncIterator[dict]:
|
3504
|
-
"""
|
3504
|
+
"""遍历目录树,获取(仅文件而非目录)文件信息(整合了多个函数的入口)
|
3505
3505
|
|
3506
3506
|
.. node::
|
3507
3507
|
`is_skim` 和 `with_path` 的不同取值组合,会决定采用不同的函数:
|
@@ -3521,7 +3521,7 @@ def iter_files_shortcut(
|
|
3521
3521
|
:param async_: 是否异步
|
3522
3522
|
:param request_kwargs: 其它请求参数
|
3523
3523
|
|
3524
|
-
:return:
|
3524
|
+
:return: 迭代器,产生文件信息
|
3525
3525
|
"""
|
3526
3526
|
if with_path:
|
3527
3527
|
request_kwargs.setdefault("with_ancestors", True)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "p115client"
|
3
|
-
version = "0.0.5.14"
|
3
|
+
version = "0.0.5.14.1"
|
4
4
|
description = "Python 115 webdisk client."
|
5
5
|
authors = ["ChenyangGao <wosiwujm@gmail.com>"]
|
6
6
|
license = "MIT"
|
@@ -37,7 +37,7 @@ iter_collect = ">=0.0.5.1"
|
|
37
37
|
multidict = "*"
|
38
38
|
orjson = "*"
|
39
39
|
p115cipher = ">=0.0.3"
|
40
|
-
p115pickcode = ">=0.0.
|
40
|
+
p115pickcode = ">=0.0.4"
|
41
41
|
posixpatht = ">=0.0.3"
|
42
42
|
python-argtools = ">=0.0.1"
|
43
43
|
python-asynctools = ">=0.1.3"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|