This commit is contained in:
deng 2024-01-21 21:01:42 +08:00
commit c25656e7fa
107 changed files with 31604 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

33
README.md Normal file
View File

@ -0,0 +1,33 @@
# Abstract
Use pyinstaller to package a photo organizer for Mac📷
(This tiny tool saved my life!!)
# Requirements
* MacOS 13.3
# Dirs
* **env**
* **process_cam_photos.yaml.yaml**
* conda env yaml to run this repo
* **dist**
* packaged tool, please copy **organize_photos** and **_internal** to your photo dir and run the executable file
```
your_photo_dir
│ 00001.jpg
│ 00002.jpg
│ 00003.jpg
│ 00004.raw
│ ...
│ organize_photos
└───_internal
```
# Files
* **organize_photos.py**
* gather photos by their created dates(dir name format: YYYY-MM-DD), run ```pyinstaller organize_photos.py``` to package the script after modification
###### tags: `Pyinstaller`

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,258 @@
([('organize_photos',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/organize_photos',
'EXECUTABLE'),
('lib-dynload/_struct.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_struct.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/zlib.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/zlib.cpython-310-darwin.so',
'EXTENSION'),
('libpython3.10.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libpython3.10.dylib',
'BINARY'),
('lib-dynload/binascii.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/binascii.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_statistics.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_statistics.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_contextvars.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_contextvars.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_decimal.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_decimal.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_pickle.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_pickle.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_hashlib.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_hashlib.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_sha3.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_sha3.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_blake2.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_blake2.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_sha256.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_sha256.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_md5.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_md5.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_sha1.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_sha1.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_sha512.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_sha512.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_random.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_random.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_bisect.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_bisect.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/math.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/math.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/unicodedata.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/unicodedata.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_datetime.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_datetime.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/array.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/array.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/select.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/select.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_socket.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_socket.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_csv.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_csv.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/resource.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/resource.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_lzma.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_lzma.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_bz2.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_bz2.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_opcode.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_opcode.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/grp.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/grp.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_posixsubprocess.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/fcntl.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/fcntl.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_ctypes.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_ctypes.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_queue.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_queue.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_scproxy.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_scproxy.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/termios.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/termios.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_ssl.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_ssl.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/pyexpat.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/pyexpat.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_heapq.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_heapq.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_multibytecodec.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_multibytecodec.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_jp.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_jp.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_kr.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_kr.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_iso2022.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_iso2022.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_cn.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_cn.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_tw.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_tw.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_codecs_hk.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_codecs_hk.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_imagingft.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_imagingft.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_webp.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_webp.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_imagingtk.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_imagingtk.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_imagingcms.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_imagingcms.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_imagingmath.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_imagingmath.cpython-310-darwin.so',
'EXTENSION'),
('PIL/_imaging.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PIL/_imaging.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/_json.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_json.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/mmap.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/mmap.cpython-310-darwin.so',
'EXTENSION'),
('libz.1.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libz.1.dylib',
'BINARY'),
('libcrypto.3.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libcrypto.3.dylib',
'BINARY'),
('liblzma.5.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/liblzma.5.dylib',
'BINARY'),
('libbz2.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libbz2.dylib',
'BINARY'),
('libffi.8.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libffi.8.dylib',
'BINARY'),
('libssl.3.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libssl.3.dylib',
'BINARY'),
('libfreetype.6.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libfreetype.6.dylib',
'BINARY'),
('libwebpdemux.2.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libwebpdemux.2.dylib',
'BINARY'),
('libwebp.7.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libwebp.7.dylib',
'BINARY'),
('libwebpmux.3.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libwebpmux.3.dylib',
'BINARY'),
('liblcms2.2.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/liblcms2.2.dylib',
'BINARY'),
('libjpeg.8.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libjpeg.8.dylib',
'BINARY'),
('libxcb.1.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libxcb.1.dylib',
'BINARY'),
('libopenjp2.7.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libopenjp2.7.dylib',
'BINARY'),
('libtiff.6.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libtiff.6.dylib',
'BINARY'),
('libpng16.16.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libpng16.16.dylib',
'BINARY'),
('libsharpyuv.0.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libsharpyuv.0.dylib',
'BINARY'),
('libXau.6.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libXau.6.dylib',
'BINARY'),
('libXdmcp.6.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libXdmcp.6.dylib',
'BINARY'),
('libdeflate.0.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libdeflate.0.dylib',
'BINARY'),
('libLerc.4.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libLerc.4.dylib',
'BINARY'),
('libzstd.1.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libzstd.1.dylib',
'BINARY'),
('libc++.1.dylib',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libc++.1.dylib',
'BINARY'),
('base_library.zip',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/base_library.zip',
'DATA'),
('importlib_metadata-7.0.1.dist-info/WHEEL',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/WHEEL',
'DATA'),
('importlib_metadata-7.0.1.dist-info/LICENSE',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/LICENSE',
'DATA'),
('importlib_metadata-7.0.1.dist-info/INSTALLER',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/INSTALLER',
'DATA'),
('importlib_metadata-7.0.1.dist-info/METADATA',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/METADATA',
'DATA'),
('importlib_metadata-7.0.1.dist-info/direct_url.json',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/direct_url.json',
'DATA'),
('importlib_metadata-7.0.1.dist-info/REQUESTED',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/REQUESTED',
'DATA'),
('importlib_metadata-7.0.1.dist-info/top_level.txt',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/top_level.txt',
'DATA'),
('importlib_metadata-7.0.1.dist-info/RECORD',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/importlib_metadata-7.0.1.dist-info/RECORD',
'DATA')],)

View File

@ -0,0 +1,60 @@
('/Users/xiao_deng/python/process_camera_photos/build/organize_photos/organize_photos',
True,
False,
True,
None,
None,
False,
False,
None,
True,
False,
'arm64',
None,
None,
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/organize_photos.pkg',
[('pyi-contents-directory _internal', '', 'OPTION'),
('PYZ-00.pyz',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/PYZ-00.pyz',
'PYZ'),
('lib-dynload/_struct.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_struct.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/zlib.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/zlib.cpython-310-darwin.so',
'EXTENSION'),
('struct',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/struct.pyc',
'PYMODULE'),
('pyimod01_archive',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod01_archive.pyc',
'PYMODULE'),
('pyimod02_importers',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod02_importers.pyc',
'PYMODULE'),
('pyimod03_ctypes',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod03_ctypes.pyc',
'PYMODULE'),
('pyiboot01_bootstrap',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
'PYSOURCE'),
('pyi_rth_inspect',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
'PYSOURCE'),
('pyi_rth_pkgres',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
'PYSOURCE'),
('pyi_rth_pkgutil',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
'PYSOURCE'),
('organize_photos',
'/Users/xiao_deng/python/process_camera_photos/organize_photos.py',
'PYSOURCE')],
[],
False,
False,
1705841616,
[('run',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/bootloader/Darwin-64bit/run',
'EXECUTABLE')],
'/Users/xiao_deng/miniforge3/envs/process_img/lib/libpython3.10.dylib')

View File

@ -0,0 +1,55 @@
('/Users/xiao_deng/python/process_camera_photos/build/organize_photos/organize_photos.pkg',
{'BINARY': True,
'DATA': True,
'EXECUTABLE': True,
'EXTENSION': True,
'PYMODULE': True,
'PYSOURCE': True,
'PYZ': False,
'SPLASH': True,
'SYMLINK': False},
[('pyi-contents-directory _internal', '', 'OPTION'),
('PYZ-00.pyz',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/PYZ-00.pyz',
'PYZ'),
('lib-dynload/_struct.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/_struct.cpython-310-darwin.so',
'EXTENSION'),
('lib-dynload/zlib.cpython-310-darwin.so',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/lib-dynload/zlib.cpython-310-darwin.so',
'EXTENSION'),
('struct',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/struct.pyc',
'PYMODULE'),
('pyimod01_archive',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod01_archive.pyc',
'PYMODULE'),
('pyimod02_importers',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod02_importers.pyc',
'PYMODULE'),
('pyimod03_ctypes',
'/Users/xiao_deng/python/process_camera_photos/build/organize_photos/localpycs/pyimod03_ctypes.pyc',
'PYMODULE'),
('pyiboot01_bootstrap',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py',
'PYSOURCE'),
('pyi_rth_inspect',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py',
'PYSOURCE'),
('pyi_rth_pkgres',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py',
'PYSOURCE'),
('pyi_rth_pkgutil',
'/Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py',
'PYSOURCE'),
('organize_photos',
'/Users/xiao_deng/python/process_camera_photos/organize_photos.py',
'PYSOURCE')],
'libpython3.10.dylib',
True,
False,
False,
[],
'arm64',
None,
None)

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,53 @@
This file lists modules PyInstaller was not able to find. This does not
necessarily mean this module is required for running your program. Python and
Python 3rd-party packages include a lot of conditional or optional modules. For
example the module 'ntpath' only exists on Windows, whereas the module
'posixpath' only exists on Posix systems.
Types if import:
* top-level: imported at the top-level - look at these first
* conditional: imported within an if-statement
* delayed: imported within a function
* optional: imported within a try-except-statement
IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
tracking down the missing module yourself. Thanks!
missing module named pyimod02_importers - imported by /Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py (delayed), /Users/xiao_deng/miniforge3/envs/process_img/lib/python3.10/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py (delayed)
missing module named pep517 - imported by importlib.metadata (delayed)
missing module named org - imported by copy (optional)
missing module named 'org.python' - imported by pickle (optional), xml.sax (delayed, conditional)
missing module named winreg - imported by importlib._bootstrap_external (conditional), mimetypes (optional), urllib.request (delayed, conditional, optional), platform (delayed, optional), pkg_resources._vendor.platformdirs.windows (delayed, optional), pygments.formatters.img (optional)
missing module named nt - imported by os (delayed, conditional, optional), ntpath (optional), shutil (conditional), importlib._bootstrap_external (conditional), ctypes (delayed, conditional)
excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), zipimport (top-level)
missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), zipimport (top-level)
missing module named _winapi - imported by encodings (delayed, conditional, optional), ntpath (optional), subprocess (optional), mimetypes (optional)
missing module named msvcrt - imported by subprocess (optional), getpass (optional)
missing module named _manylinux - imported by pkg_resources._vendor.packaging._manylinux (delayed, optional), packaging._manylinux (delayed, optional)
missing module named jnius - imported by pkg_resources._vendor.platformdirs.android (delayed, optional)
missing module named platformdirs - imported by pkg_resources._vendor.platformdirs.__main__ (top-level)
missing module named 'pkg_resources.extern.importlib_resources' - imported by pkg_resources._vendor.jaraco.text (optional)
missing module named 'typing.io' - imported by importlib.resources (top-level)
missing module named 'pkg_resources.extern.more_itertools' - imported by pkg_resources._vendor.jaraco.functools (top-level)
missing module named pkg_resources.extern.packaging - imported by pkg_resources.extern (top-level), pkg_resources (top-level)
missing module named pkg_resources.extern.platformdirs - imported by pkg_resources.extern (top-level), pkg_resources (top-level)
missing module named 'pkg_resources.extern.jaraco' - imported by pkg_resources (top-level), pkg_resources._vendor.jaraco.text (top-level)
missing module named java - imported by xml.sax._exceptions (conditional)
missing module named vms_lib - imported by platform (delayed, optional)
missing module named 'java.lang' - imported by platform (delayed, optional)
missing module named _winreg - imported by platform (delayed, optional), pygments.formatters.img (optional)
missing module named pygments.lexers.PrologLexer - imported by pygments.lexers (top-level), pygments.lexers.cplint (top-level)
missing module named PIL._imagingagg - imported by PIL (delayed, conditional, optional), PIL.ImageDraw (delayed, conditional, optional)
missing module named olefile - imported by PIL.FpxImagePlugin (top-level), PIL.MicImagePlugin (top-level)
missing module named numpy - imported by PIL.Image (delayed, conditional, optional)
missing module named cffi - imported by PIL.Image (optional), PIL.PyAccess (optional)
missing module named defusedxml - imported by PIL.Image (optional)
missing module named ctags - imported by pygments.formatters.html (optional)
missing module named chardet - imported by pygments.lexer (delayed, conditional, optional)
missing module named ipywidgets - imported by rich.live (delayed, conditional, optional)
missing module named 'IPython.display' - imported by rich.live (delayed, conditional, optional)
missing module named IPython - imported by rich.jupyter (delayed, optional)
missing module named 'IPython.core' - imported by rich.pretty (delayed, optional)
missing module named attr - imported by rich.pretty (optional)
missing module named linkify_it - imported by markdown_it.main (optional)

File diff suppressed because it is too large Load Diff

BIN
dist/.DS_Store vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
conda

View File

@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@ -0,0 +1,134 @@
Metadata-Version: 2.1
Name: importlib-metadata
Version: 7.0.1
Summary: Read metadata from Python packages
Home-page: https://github.com/python/importlib_metadata
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8
License-File: LICENSE
Requires-Dist: zipp >=0.5
Requires-Dist: typing-extensions >=3.6.4 ; python_version < "3.8"
Provides-Extra: docs
Requires-Dist: sphinx >=3.5 ; extra == 'docs'
Requires-Dist: sphinx <7.2.5 ; extra == 'docs'
Requires-Dist: jaraco.packaging >=9.3 ; extra == 'docs'
Requires-Dist: rst.linker >=1.9 ; extra == 'docs'
Requires-Dist: furo ; extra == 'docs'
Requires-Dist: sphinx-lint ; extra == 'docs'
Requires-Dist: jaraco.tidelift >=1.4 ; extra == 'docs'
Provides-Extra: perf
Requires-Dist: ipython ; extra == 'perf'
Provides-Extra: testing
Requires-Dist: pytest >=6 ; extra == 'testing'
Requires-Dist: pytest-checkdocs >=2.4 ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'
Requires-Dist: pytest-enabler >=2.2 ; extra == 'testing'
Requires-Dist: pytest-ruff ; extra == 'testing'
Requires-Dist: packaging ; extra == 'testing'
Requires-Dist: pyfakefs ; extra == 'testing'
Requires-Dist: flufl.flake8 ; extra == 'testing'
Requires-Dist: pytest-perf >=0.9.2 ; extra == 'testing'
Requires-Dist: pytest-black >=0.3.7 ; (platform_python_implementation != "PyPy") and extra == 'testing'
Requires-Dist: pytest-mypy >=0.9.1 ; (platform_python_implementation != "PyPy") and extra == 'testing'
Requires-Dist: importlib-resources >=1.3 ; (python_version < "3.9") and extra == 'testing'
.. image:: https://img.shields.io/pypi/v/importlib_metadata.svg
:target: https://pypi.org/project/importlib_metadata
.. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg
.. image:: https://github.com/python/importlib_metadata/actions/workflows/main.yml/badge.svg
:target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22
:alt: tests
.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
:target: https://github.com/astral-sh/ruff
:alt: Ruff
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
:alt: Code style: Black
.. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest
:target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest
.. image:: https://img.shields.io/badge/skeleton-2023-informational
:target: https://blog.jaraco.com/skeleton
.. image:: https://tidelift.com/badges/package/pypi/importlib-metadata
:target: https://tidelift.com/subscription/pkg/pypi-importlib-metadata?utm_source=pypi-importlib-metadata&utm_medium=readme
Library to access the metadata for a Python package.
This package supplies third-party access to the functionality of
`importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_
including improvements added to subsequent Python versions.
Compatibility
=============
New features are introduced in this third-party library and later merged
into CPython. The following table indicates which versions of this library
were contributed to different versions in the standard library:
.. list-table::
:header-rows: 1
* - importlib_metadata
- stdlib
* - 7.0
- 3.13
* - 6.5
- 3.12
* - 4.13
- 3.11
* - 4.6
- 3.10
* - 1.4
- 3.8
Usage
=====
See the `online documentation <https://importlib-metadata.readthedocs.io/>`_
for usage details.
`Finder authors
<https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
also add support for custom package installers. See the above documentation
for details.
Caveats
=======
This project primarily supports third-party packages installed by PyPA
tools (or other conforming packages). It does not support:
- Packages in the stdlib.
- Packages installed without metadata.
Project details
===============
* Project home: https://github.com/python/importlib_metadata
* Report bugs at: https://github.com/python/importlib_metadata/issues
* Code hosting: https://github.com/python/importlib_metadata
* Documentation: https://importlib-metadata.readthedocs.io/
For Enterprise
==============
Available as part of the Tidelift Subscription.
This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.
`Learn more <https://tidelift.com/subscription/pkg/pypi-importlib-metadata?utm_source=pypi-importlib-metadata&utm_medium=referral&utm_campaign=github>`_.

View File

@ -0,0 +1,29 @@
importlib_metadata-7.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
importlib_metadata-7.0.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
importlib_metadata-7.0.1.dist-info/METADATA,sha256=YvsDzB194dUN5E1AWwcIMCsS9MzX_SFtmuiGPcp2emc,4926
importlib_metadata-7.0.1.dist-info/RECORD,,
importlib_metadata-7.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
importlib_metadata-7.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
importlib_metadata-7.0.1.dist-info/direct_url.json,sha256=3k9KP9k7MJqoW09Tbfb5YxjSvYIZpJoJ8nIarc3SlHs,114
importlib_metadata-7.0.1.dist-info/top_level.txt,sha256=CO3fD9yylANiXkrMo4qHLV_mqXL2sC5JFKgt1yWAT-A,19
importlib_metadata/__init__.py,sha256=CrDhGQz3SCK5Cct82OvmGzqzOqneJn3jLvvfmSx8nCs,31551
importlib_metadata/__pycache__/__init__.cpython-312.pyc,,
importlib_metadata/__pycache__/_adapters.cpython-312.pyc,,
importlib_metadata/__pycache__/_collections.cpython-312.pyc,,
importlib_metadata/__pycache__/_compat.cpython-312.pyc,,
importlib_metadata/__pycache__/_functools.cpython-312.pyc,,
importlib_metadata/__pycache__/_itertools.cpython-312.pyc,,
importlib_metadata/__pycache__/_meta.cpython-312.pyc,,
importlib_metadata/__pycache__/_py39compat.cpython-312.pyc,,
importlib_metadata/__pycache__/_text.cpython-312.pyc,,
importlib_metadata/__pycache__/diagnose.cpython-312.pyc,,
importlib_metadata/_adapters.py,sha256=jZr_CmHrl8qTGatO0yMmuOdfFExOY64G8eEYf6Cnj9k,2455
importlib_metadata/_collections.py,sha256=CJ0OTCHIjWA0ZIVS4voORAsn2R4R2cQBEtPsZEJpASY,743
importlib_metadata/_compat.py,sha256=73QKrN9KNoaZzhbX5yPCCZa-FaALwXe8TPlDR72JgBU,1314
importlib_metadata/_functools.py,sha256=PsY2-4rrKX4RVeRC1oGp1lB1pmC9eKN88_f-bD9uOoA,2895
importlib_metadata/_itertools.py,sha256=cvr_2v8BRbxcIl5x5ldfqdHjhI8Yi8s8yk50G_nm6jQ,2068
importlib_metadata/_meta.py,sha256=FRThoc8OnIaQ0trIKQ0kyj08cQhZvqNFyjEyXUgAvVs,1849
importlib_metadata/_py39compat.py,sha256=2Tk5twb_VgLCY-1NEAQjdZp_S9OFMC-pUzP2isuaPsQ,1098
importlib_metadata/_text.py,sha256=HCsFksZpJLeTP3NEk_ngrAeXVRRtTrtyh9eOABoRP4A,2166
importlib_metadata/diagnose.py,sha256=nkSRMiowlmkhLYhKhvCg9glmt_11Cox-EmLzEbqYTa8,379
importlib_metadata/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0

View File

@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.42.0)
Root-Is-Purelib: true
Tag: py3-none-any

View File

@ -0,0 +1 @@
{"dir_info": {}, "url": "file:///home/conda/feedstock_root/build_artifacts/importlib-metadata_1703269254275/work"}

View File

@ -0,0 +1 @@
importlib_metadata

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/libLerc.4.dylib vendored Executable file

Binary file not shown.

BIN
dist/organize_photos/_internal/libXau.6.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/libbz2.dylib vendored Executable file

Binary file not shown.

BIN
dist/organize_photos/_internal/libc++.1.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/libffi.8.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/libjpeg.8.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/liblzma.5.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
dist/organize_photos/_internal/libssl.3.dylib vendored Executable file

Binary file not shown.

BIN
dist/organize_photos/_internal/libtiff.6.dylib vendored Executable file

Binary file not shown.

BIN
dist/organize_photos/_internal/libwebp.7.dylib vendored Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More