fileutils-dir 0.1.2__py3-none-any.whl → 0.1.3__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.
- fileutils/files.py +20 -45
- {fileutils_dir-0.1.2.dist-info → fileutils_dir-0.1.3.dist-info}/METADATA +1 -1
- fileutils_dir-0.1.3.dist-info/RECORD +6 -0
- fileutils_dir-0.1.2.dist-info/RECORD +0 -6
- {fileutils_dir-0.1.2.dist-info → fileutils_dir-0.1.3.dist-info}/WHEEL +0 -0
- {fileutils_dir-0.1.2.dist-info → fileutils_dir-0.1.3.dist-info}/top_level.txt +0 -0
fileutils/files.py
CHANGED
|
@@ -1,52 +1,33 @@
|
|
|
1
|
-
from pathlib import Path
|
|
2
|
-
from typing import Iterable
|
|
3
1
|
from collections.abc import Iterable
|
|
2
|
+
from pathlib import Path
|
|
4
3
|
|
|
5
4
|
FILE_TYPES = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
".go", ".rs", ".rb", ".php", ".sh"
|
|
15
|
-
],
|
|
16
|
-
"data": [".json", ".yaml", ".yml", ".xml", ".toml"],
|
|
17
|
-
"audio": [".mp3", ".wav", ".flac", ".ogg", ".aac", ".m4a"],
|
|
18
|
-
"video": [".mp4", ".mkv", ".avi", ".mov", ".webm"],
|
|
19
|
-
"archive": [".zip", ".tar", ".gz", ".bz2", ".7z", ".rar"],
|
|
5
|
+
"image": [".jpg", ".jpeg", ".png", ".webp", ".bmp", ".gif", ".tiff"],
|
|
6
|
+
"text": [".txt", ".md", ".rst", ".log"], "pdf": [".pdf"], "doc": [".doc", ".docx", ".odt"],
|
|
7
|
+
"sheet": [".xls", ".xlsx", ".ods", ".csv"], "presentation": [".ppt", ".pptx", ".odp"],
|
|
8
|
+
"code": [".py", ".js", ".ts", ".java", ".c", ".cpp", ".h", ".go", ".rs", ".rb", ".php", ".sh"],
|
|
9
|
+
"data": [".json", ".yaml", ".yml", ".xml", ".toml"],
|
|
10
|
+
"audio": [".mp3", ".wav", ".flac", ".ogg", ".aac", ".m4a"],
|
|
11
|
+
"video": [".mp4", ".mkv", ".avi", ".mov", ".webm"],
|
|
12
|
+
"archive": [".zip", ".tar", ".gz", ".bz2", ".7z", ".rar"],
|
|
20
13
|
}
|
|
21
14
|
|
|
22
15
|
|
|
23
16
|
def in_dir(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
paths: Iterable[str] | None = None,
|
|
18
|
+
ext: Iterable[str] | None = None,
|
|
19
|
+
dtype: Iterable[str] | None = None,
|
|
27
20
|
) -> list[str]:
|
|
28
|
-
""
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- If `extensions` or `types` are provided, only matching files are returned.
|
|
32
|
-
- If neither is provided, all files in the PWD are returned.
|
|
33
|
-
"""
|
|
34
|
-
if isinstance(directories, str):
|
|
35
|
-
types = [directories]
|
|
36
|
-
directories = None
|
|
37
|
-
if directories is None:
|
|
38
|
-
directories = ["."]
|
|
39
|
-
if extensions is None:
|
|
40
|
-
extensions = []
|
|
41
|
-
if types is None:
|
|
42
|
-
types = []
|
|
21
|
+
paths = paths or ["."]
|
|
22
|
+
ext = ext or []
|
|
23
|
+
dtype = dtype or []
|
|
43
24
|
|
|
44
25
|
normalized_extensions = {
|
|
45
|
-
|
|
46
|
-
for
|
|
26
|
+
e.lower() if e.startswith(".") else f".{e.lower()}"
|
|
27
|
+
for e in ext
|
|
47
28
|
}
|
|
48
29
|
|
|
49
|
-
for file_type in
|
|
30
|
+
for file_type in dtype:
|
|
50
31
|
key = file_type.strip().lower()
|
|
51
32
|
try:
|
|
52
33
|
normalized_extensions.update(FILE_TYPES[key])
|
|
@@ -55,18 +36,12 @@ def in_dir(
|
|
|
55
36
|
|
|
56
37
|
files_to_return: list[str] = []
|
|
57
38
|
|
|
58
|
-
for path in
|
|
39
|
+
for path in paths:
|
|
59
40
|
for item in Path(path).iterdir():
|
|
60
41
|
if not item.is_file():
|
|
61
42
|
continue
|
|
62
43
|
|
|
63
|
-
|
|
64
|
-
if not normalized_extensions:
|
|
65
|
-
files_to_return.append(str(item))
|
|
66
|
-
continue
|
|
67
|
-
|
|
68
|
-
# Otherwise, filter by extension
|
|
69
|
-
if item.suffix.lower() in normalized_extensions:
|
|
44
|
+
if not normalized_extensions or item.suffix.lower() in normalized_extensions:
|
|
70
45
|
files_to_return.append(str(item))
|
|
71
46
|
|
|
72
47
|
return files_to_return
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
fileutils/__init__.py,sha256=3u-pHKVodcCPECMcj95lrkk8nr7tl6_HRqiQOw6YbBM,78
|
|
2
|
+
fileutils/files.py,sha256=pSHHNR8oZyCtSi7ZL73wIqywyntwe7mKVogaAdhLh_8,1718
|
|
3
|
+
fileutils_dir-0.1.3.dist-info/METADATA,sha256=f4HpV1wJjFH_7pcDiCqP0Yd8Mo6ArSNKvXLWLJg4v8M,1239
|
|
4
|
+
fileutils_dir-0.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
+
fileutils_dir-0.1.3.dist-info/top_level.txt,sha256=kZPCAZpYo7OkmwY_R2a4ifuMINdW5AZd2JaNHDSXQYQ,10
|
|
6
|
+
fileutils_dir-0.1.3.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
fileutils/__init__.py,sha256=3u-pHKVodcCPECMcj95lrkk8nr7tl6_HRqiQOw6YbBM,78
|
|
2
|
-
fileutils/files.py,sha256=j4knqqqwS8iOywxapZjJHx8kQee1SB0u6dzrVYdIhIA,2375
|
|
3
|
-
fileutils_dir-0.1.2.dist-info/METADATA,sha256=_yHXInJ_ccb18DhVFmBjVp20UezeofZy5KqVhgwWAyQ,1239
|
|
4
|
-
fileutils_dir-0.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
-
fileutils_dir-0.1.2.dist-info/top_level.txt,sha256=kZPCAZpYo7OkmwY_R2a4ifuMINdW5AZd2JaNHDSXQYQ,10
|
|
6
|
-
fileutils_dir-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|