filemanager-pilcs 0.2.8__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.
- filemanager_pilcs-0.2.8/PKG-INFO +41 -0
- filemanager_pilcs-0.2.8/filemanager/FileManager.py +2813 -0
- filemanager_pilcs-0.2.8/filemanager/__init__.py +9 -0
- filemanager_pilcs-0.2.8/filemanager_pilcs.egg-info/PKG-INFO +41 -0
- filemanager_pilcs-0.2.8/filemanager_pilcs.egg-info/SOURCES.txt +8 -0
- filemanager_pilcs-0.2.8/filemanager_pilcs.egg-info/dependency_links.txt +1 -0
- filemanager_pilcs-0.2.8/filemanager_pilcs.egg-info/requires.txt +7 -0
- filemanager_pilcs-0.2.8/filemanager_pilcs.egg-info/top_level.txt +1 -0
- filemanager_pilcs-0.2.8/setup.cfg +4 -0
- filemanager_pilcs-0.2.8/setup.py +52 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: filemanager_pilcs
|
|
3
|
+
Version: 0.2.8
|
|
4
|
+
Summary: A comprehensive file management module with various utilities
|
|
5
|
+
Home-page: https://github.com/yourusername/filemanager
|
|
6
|
+
Author: pilcs
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: file manager utilities download metadata
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Requires-Python: >=3.6
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: requests
|
|
25
|
+
Requires-Dist: Pillow
|
|
26
|
+
Requires-Dist: piexif
|
|
27
|
+
Requires-Dist: beautifulsoup4
|
|
28
|
+
Requires-Dist: chardet
|
|
29
|
+
Requires-Dist: mutagen
|
|
30
|
+
Requires-Dist: tencentcloud-sdk-python
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
A comprehensive file management module with various utilities including:
|
|
34
|
+
- File operations and metadata management
|
|
35
|
+
- Network file operations and URL handling
|
|
36
|
+
- Image metadata manipulation
|
|
37
|
+
- JSON parsing and fixing
|
|
38
|
+
- Download utilities with aria2 integration
|
|
39
|
+
- File encoding detection and conversion
|
|
40
|
+
- DNS update functionality
|
|
41
|
+
- And more...
|