pixmatch 0.0.1__tar.gz → 0.0.2__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.
- {pixmatch-0.0.1 → pixmatch-0.0.2}/LICENSE +18 -18
- {pixmatch-0.0.1 → pixmatch-0.0.2}/PKG-INFO +93 -93
- {pixmatch-0.0.1 → pixmatch-0.0.2}/README.md +70 -70
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch/__init__.py +444 -444
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch/__main__.py +48 -48
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch/utils.py +36 -36
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch.egg-info/PKG-INFO +93 -93
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch.egg-info/SOURCES.txt +1 -6
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pyproject.toml +124 -121
- {pixmatch-0.0.1 → pixmatch-0.0.2}/setup.cfg +4 -4
- pixmatch-0.0.1/pixmatch/gui/__init__.py +0 -837
- pixmatch-0.0.1/pixmatch/gui/pixmatch.ico +0 -0
- pixmatch-0.0.1/pixmatch/gui/utils.py +0 -13
- pixmatch-0.0.1/pixmatch/gui/widgets.py +0 -656
- pixmatch-0.0.1/pixmatch/gui/zip.png +0 -0
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch.egg-info/dependency_links.txt +0 -0
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch.egg-info/requires.txt +0 -0
- {pixmatch-0.0.1 → pixmatch-0.0.2}/pixmatch.egg-info/top_level.txt +0 -0
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
Copyright (c) 2018 The Python Packaging Authority
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
-
in the Software without restriction, including without limitation the rights
|
|
6
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
-
furnished to do so, subject to the following conditions:
|
|
9
|
-
|
|
10
|
-
The above copyright notice and this permission notice shall be included in all
|
|
11
|
-
copies or substantial portions of the Software.
|
|
12
|
-
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1
|
+
Copyright (c) 2018 The Python Packaging Authority
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
19
|
SOFTWARE.
|
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: pixmatch
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A modern VisiPics replacement.
|
|
5
|
-
Author-email: Ryan Heard <ryanwheard@gmail.com>
|
|
6
|
-
Project-URL: Repository, https://github.com/rheard/pixmatch
|
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
|
8
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
14
|
-
Requires-Python: >=3.9
|
|
15
|
-
Description-Content-Type: text/markdown
|
|
16
|
-
License-File: LICENSE
|
|
17
|
-
Requires-Dist: Pillow
|
|
18
|
-
Requires-Dist: imagehash
|
|
19
|
-
Provides-Extra: gui
|
|
20
|
-
Requires-Dist: PySide6; extra == "gui"
|
|
21
|
-
Dynamic: license-file
|
|
22
|
-
|
|
23
|
-
# PixMatch
|
|
24
|
-
|
|
25
|
-
PixMatch is a modern, cross-platform duplicate-image finder inspired by VisiPics, built with PySide6.
|
|
26
|
-
|
|
27
|
-

|
|
28
|
-
|
|
29
|
-
PixMatch scans folders (and ZIP archives) for visually similar images, groups matches,
|
|
30
|
-
and lets you quickly keep, ignore, or delete files from a clean GUI.
|
|
31
|
-
Rotated, mirrored or recompressed imgaes are no match for PixMatch!
|
|
32
|
-
PixMatch can even detect visually similar GIFs and animated WebP files.
|
|
33
|
-
Files inside ZIPs are treated as read-only “sources of truth”
|
|
34
|
-
—never deleted—so you can safely compare against archived libraries.
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Supported extensions: `.jpg`, `.jpeg`, `.png`, `.webp`, `.tif`, `.tiff`, `.bmp`, `.gif`, `.zip`.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
## Install
|
|
41
|
-
|
|
42
|
-
PixMatch is a standard Python app (GUI via PySide6).
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
python -m pip install pixmatch[gui]
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## Running
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
python -m pixmatch
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
### Usage
|
|
55
|
-
|
|
56
|
-
Simply select some folders to parse and then click begin.
|
|
57
|
-
|
|
58
|
-
Once duplicate groups begin to appear in the duplicates view,
|
|
59
|
-
you can start to select actions for them and then execute those actions.
|
|
60
|
-
Clicking on a tile will cycle through actions, with red being delete, yellow being ignore, and green being no action.
|
|
61
|
-
|
|
62
|
-
Images which are in zips and cannot be deleted will have a rar icon to denote such,
|
|
63
|
-
and they cannot be marked for deletion.
|
|
64
|
-
|
|
65
|
-
The status bar under each image shows the full path, the file size, the uncompressed file size,
|
|
66
|
-
the frames in the image if it is an animated image, the image dimensions and the last modified date.
|
|
67
|
-
|
|
68
|
-
Basic status bar example:
|
|
69
|
-
|
|
70
|
-

|
|
71
|
-
|
|
72
|
-
Animated image status bar example:
|
|
73
|
-
|
|
74
|
-

|
|
75
|
-
|
|
76
|
-
#### Notes
|
|
77
|
-
* An exact match checkbox is provided. If strength is 10 and this checkbox is checked,
|
|
78
|
-
SHA-256 file hashes will be used instead of perceptual hashes.
|
|
79
|
-
|
|
80
|
-
#### Optional Args:
|
|
81
|
-
```markdown
|
|
82
|
-
positional arguments:
|
|
83
|
-
folders Folders to load into the selected file path display (to speed up testing).
|
|
84
|
-
|
|
85
|
-
options:
|
|
86
|
-
--verbose More detailed logging
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
## Acknowledgements
|
|
90
|
-
|
|
91
|
-
* Thanks to anyone who supported this effort, including the teams behind PySide6, Pillow, PyPI, and many other projects.
|
|
92
|
-
* Thanks to Johannes Buchner and the team behind imagehash, which serves as a large backbone in this application and saved me a lot of time.
|
|
93
|
-
* Thanks to Guillaume Fouet (aka Ozone) for VisiPics and the inspiration. Please don't be mad, I just wanted some new features like better gif and zip support.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pixmatch
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A modern VisiPics replacement.
|
|
5
|
+
Author-email: Ryan Heard <ryanwheard@gmail.com>
|
|
6
|
+
Project-URL: Repository, https://github.com/rheard/pixmatch
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENSE
|
|
17
|
+
Requires-Dist: Pillow
|
|
18
|
+
Requires-Dist: imagehash
|
|
19
|
+
Provides-Extra: gui
|
|
20
|
+
Requires-Dist: PySide6; extra == "gui"
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# PixMatch
|
|
24
|
+
|
|
25
|
+
PixMatch is a modern, cross-platform duplicate-image finder inspired by VisiPics, built with PySide6.
|
|
26
|
+
|
|
27
|
+

|
|
28
|
+
|
|
29
|
+
PixMatch scans folders (and ZIP archives) for visually similar images, groups matches,
|
|
30
|
+
and lets you quickly keep, ignore, or delete files from a clean GUI.
|
|
31
|
+
Rotated, mirrored or recompressed imgaes are no match for PixMatch!
|
|
32
|
+
PixMatch can even detect visually similar GIFs and animated WebP files.
|
|
33
|
+
Files inside ZIPs are treated as read-only “sources of truth”
|
|
34
|
+
—never deleted—so you can safely compare against archived libraries.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Supported extensions: `.jpg`, `.jpeg`, `.png`, `.webp`, `.tif`, `.tiff`, `.bmp`, `.gif`, `.zip`.
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## Install
|
|
41
|
+
|
|
42
|
+
PixMatch is a standard Python app (GUI via PySide6).
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
python -m pip install pixmatch[gui]
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Running
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
python -m pixmatch
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Usage
|
|
55
|
+
|
|
56
|
+
Simply select some folders to parse and then click begin.
|
|
57
|
+
|
|
58
|
+
Once duplicate groups begin to appear in the duplicates view,
|
|
59
|
+
you can start to select actions for them and then execute those actions.
|
|
60
|
+
Clicking on a tile will cycle through actions, with red being delete, yellow being ignore, and green being no action.
|
|
61
|
+
|
|
62
|
+
Images which are in zips and cannot be deleted will have a rar icon to denote such,
|
|
63
|
+
and they cannot be marked for deletion.
|
|
64
|
+
|
|
65
|
+
The status bar under each image shows the full path, the file size, the uncompressed file size,
|
|
66
|
+
the frames in the image if it is an animated image, the image dimensions and the last modified date.
|
|
67
|
+
|
|
68
|
+
Basic status bar example:
|
|
69
|
+
|
|
70
|
+

|
|
71
|
+
|
|
72
|
+
Animated image status bar example:
|
|
73
|
+
|
|
74
|
+

|
|
75
|
+
|
|
76
|
+
#### Notes
|
|
77
|
+
* An exact match checkbox is provided. If strength is 10 and this checkbox is checked,
|
|
78
|
+
SHA-256 file hashes will be used instead of perceptual hashes.
|
|
79
|
+
|
|
80
|
+
#### Optional Args:
|
|
81
|
+
```markdown
|
|
82
|
+
positional arguments:
|
|
83
|
+
folders Folders to load into the selected file path display (to speed up testing).
|
|
84
|
+
|
|
85
|
+
options:
|
|
86
|
+
--verbose More detailed logging
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
## Acknowledgements
|
|
90
|
+
|
|
91
|
+
* Thanks to anyone who supported this effort, including the teams behind PySide6, Pillow, PyPI, and many other projects.
|
|
92
|
+
* Thanks to Johannes Buchner and the team behind imagehash, which serves as a large backbone in this application and saved me a lot of time.
|
|
93
|
+
* Thanks to Guillaume Fouet (aka Ozone) for VisiPics and the inspiration. Please don't be mad, I just wanted some new features like better gif and zip support.
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
# PixMatch
|
|
2
|
-
|
|
3
|
-
PixMatch is a modern, cross-platform duplicate-image finder inspired by VisiPics, built with PySide6.
|
|
4
|
-
|
|
5
|
-

|
|
6
|
-
|
|
7
|
-
PixMatch scans folders (and ZIP archives) for visually similar images, groups matches,
|
|
8
|
-
and lets you quickly keep, ignore, or delete files from a clean GUI.
|
|
9
|
-
Rotated, mirrored or recompressed imgaes are no match for PixMatch!
|
|
10
|
-
PixMatch can even detect visually similar GIFs and animated WebP files.
|
|
11
|
-
Files inside ZIPs are treated as read-only “sources of truth”
|
|
12
|
-
—never deleted—so you can safely compare against archived libraries.
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
Supported extensions: `.jpg`, `.jpeg`, `.png`, `.webp`, `.tif`, `.tiff`, `.bmp`, `.gif`, `.zip`.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
## Install
|
|
19
|
-
|
|
20
|
-
PixMatch is a standard Python app (GUI via PySide6).
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
python -m pip install pixmatch[gui]
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
## Running
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
python -m pixmatch
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
### Usage
|
|
33
|
-
|
|
34
|
-
Simply select some folders to parse and then click begin.
|
|
35
|
-
|
|
36
|
-
Once duplicate groups begin to appear in the duplicates view,
|
|
37
|
-
you can start to select actions for them and then execute those actions.
|
|
38
|
-
Clicking on a tile will cycle through actions, with red being delete, yellow being ignore, and green being no action.
|
|
39
|
-
|
|
40
|
-
Images which are in zips and cannot be deleted will have a rar icon to denote such,
|
|
41
|
-
and they cannot be marked for deletion.
|
|
42
|
-
|
|
43
|
-
The status bar under each image shows the full path, the file size, the uncompressed file size,
|
|
44
|
-
the frames in the image if it is an animated image, the image dimensions and the last modified date.
|
|
45
|
-
|
|
46
|
-
Basic status bar example:
|
|
47
|
-
|
|
48
|
-

|
|
49
|
-
|
|
50
|
-
Animated image status bar example:
|
|
51
|
-
|
|
52
|
-

|
|
53
|
-
|
|
54
|
-
#### Notes
|
|
55
|
-
* An exact match checkbox is provided. If strength is 10 and this checkbox is checked,
|
|
56
|
-
SHA-256 file hashes will be used instead of perceptual hashes.
|
|
57
|
-
|
|
58
|
-
#### Optional Args:
|
|
59
|
-
```markdown
|
|
60
|
-
positional arguments:
|
|
61
|
-
folders Folders to load into the selected file path display (to speed up testing).
|
|
62
|
-
|
|
63
|
-
options:
|
|
64
|
-
--verbose More detailed logging
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## Acknowledgements
|
|
68
|
-
|
|
69
|
-
* Thanks to anyone who supported this effort, including the teams behind PySide6, Pillow, PyPI, and many other projects.
|
|
70
|
-
* Thanks to Johannes Buchner and the team behind imagehash, which serves as a large backbone in this application and saved me a lot of time.
|
|
1
|
+
# PixMatch
|
|
2
|
+
|
|
3
|
+
PixMatch is a modern, cross-platform duplicate-image finder inspired by VisiPics, built with PySide6.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
PixMatch scans folders (and ZIP archives) for visually similar images, groups matches,
|
|
8
|
+
and lets you quickly keep, ignore, or delete files from a clean GUI.
|
|
9
|
+
Rotated, mirrored or recompressed imgaes are no match for PixMatch!
|
|
10
|
+
PixMatch can even detect visually similar GIFs and animated WebP files.
|
|
11
|
+
Files inside ZIPs are treated as read-only “sources of truth”
|
|
12
|
+
—never deleted—so you can safely compare against archived libraries.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
Supported extensions: `.jpg`, `.jpeg`, `.png`, `.webp`, `.tif`, `.tiff`, `.bmp`, `.gif`, `.zip`.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
PixMatch is a standard Python app (GUI via PySide6).
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
python -m pip install pixmatch[gui]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Running
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
python -m pixmatch
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Usage
|
|
33
|
+
|
|
34
|
+
Simply select some folders to parse and then click begin.
|
|
35
|
+
|
|
36
|
+
Once duplicate groups begin to appear in the duplicates view,
|
|
37
|
+
you can start to select actions for them and then execute those actions.
|
|
38
|
+
Clicking on a tile will cycle through actions, with red being delete, yellow being ignore, and green being no action.
|
|
39
|
+
|
|
40
|
+
Images which are in zips and cannot be deleted will have a rar icon to denote such,
|
|
41
|
+
and they cannot be marked for deletion.
|
|
42
|
+
|
|
43
|
+
The status bar under each image shows the full path, the file size, the uncompressed file size,
|
|
44
|
+
the frames in the image if it is an animated image, the image dimensions and the last modified date.
|
|
45
|
+
|
|
46
|
+
Basic status bar example:
|
|
47
|
+
|
|
48
|
+

|
|
49
|
+
|
|
50
|
+
Animated image status bar example:
|
|
51
|
+
|
|
52
|
+

|
|
53
|
+
|
|
54
|
+
#### Notes
|
|
55
|
+
* An exact match checkbox is provided. If strength is 10 and this checkbox is checked,
|
|
56
|
+
SHA-256 file hashes will be used instead of perceptual hashes.
|
|
57
|
+
|
|
58
|
+
#### Optional Args:
|
|
59
|
+
```markdown
|
|
60
|
+
positional arguments:
|
|
61
|
+
folders Folders to load into the selected file path display (to speed up testing).
|
|
62
|
+
|
|
63
|
+
options:
|
|
64
|
+
--verbose More detailed logging
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Acknowledgements
|
|
68
|
+
|
|
69
|
+
* Thanks to anyone who supported this effort, including the teams behind PySide6, Pillow, PyPI, and many other projects.
|
|
70
|
+
* Thanks to Johannes Buchner and the team behind imagehash, which serves as a large backbone in this application and saved me a lot of time.
|
|
71
71
|
* Thanks to Guillaume Fouet (aka Ozone) for VisiPics and the inspiration. Please don't be mad, I just wanted some new features like better gif and zip support.
|