PyCatFile 0.6.0__tar.gz → 0.6.4__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.
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PKG-INFO +1 -1
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PyCatFile.egg-info/PKG-INFO +1 -1
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/catfile.py +10 -10
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/pycatfile.py +549 -451
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/setup.py +1 -1
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/LICENSE +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PyCatFile.egg-info/SOURCES.txt +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PyCatFile.egg-info/dependency_links.txt +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PyCatFile.egg-info/top_level.txt +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/PyCatFile.egg-info/zip-safe +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/README.md +0 -0
- {PyCatFile-0.6.0 → PyCatFile-0.6.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.4
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.4
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: catfile.py - Last Update: 3/
|
|
17
|
+
$FileInfo: catfile.py - Last Update: 3/26/2024 Ver. 0.6.4 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals;
|
|
@@ -44,21 +44,21 @@ argparser.add_argument("-V", "--version", action="version", version=__program_na
|
|
|
44
44
|
argparser.add_argument("-i", "-f", "--input", help="Specify the file(s) to concatenate or the concatenated file to extract.", required=True);
|
|
45
45
|
argparser.add_argument("-d", "-v", "--verbose", action="store_true", help="Enable verbose mode to display various debugging information.");
|
|
46
46
|
argparser.add_argument("-c", "--create", action="store_true", help="Perform concatenation operation only.");
|
|
47
|
-
argparser.add_argument("-validate", "--validate", action="store_true", help="Validate CatFile checksums");
|
|
48
|
-
argparser.add_argument("-checksum", "--checksum", default="crc32", help="Specify the type of checksum to use. Default is crc32.");
|
|
47
|
+
argparser.add_argument("-I", "-validate", "--validate", action="store_true", help="Validate CatFile checksums");
|
|
48
|
+
argparser.add_argument("-C", "-checksum", "--checksum", default="crc32", help="Specify the type of checksum to use. Default is crc32.");
|
|
49
49
|
argparser.add_argument("-e", "-x", "--extract", action="store_true", help="Perform extraction operation only.");
|
|
50
|
-
argparser.add_argument("-format", "--format", default=__file_format_list__[0], help="Specify the format to use");
|
|
51
|
-
argparser.add_argument("-delimiter", "--delimiter", default=__file_format_list__[5], help="Specify the format to use");
|
|
52
|
-
argparser.add_argument("-formatver", "--formatver", default=__file_format_list__[6], help="Specify the format version");
|
|
50
|
+
argparser.add_argument("-F", "-format", "--format", default=__file_format_list__[0], help="Specify the format to use");
|
|
51
|
+
argparser.add_argument("-D", "-delimiter", "--delimiter", default=__file_format_list__[5], help="Specify the format to use");
|
|
52
|
+
argparser.add_argument("-m", "-formatver", "--formatver", default=__file_format_list__[6], help="Specify the format version");
|
|
53
53
|
argparser.add_argument("-l", "-t", "--list", action="store_true", help="List files included in the concatenated file.");
|
|
54
54
|
argparser.add_argument("-p", "-preserve", "--preserve", action="store_false", help="Preserve permissions and time of files");
|
|
55
|
-
argparser.add_argument("-repack", "--repack", action="store_true", help="Re-concatenate files, fixing checksum errors if any.");
|
|
55
|
+
argparser.add_argument("-R", "-repack", "--repack", action="store_true", help="Re-concatenate files, fixing checksum errors if any.");
|
|
56
56
|
argparser.add_argument("-o", "--output", default=None, help="Specify the name for the extracted concatenated files or the output concatenated file.");
|
|
57
|
-
argparser.add_argument("-compression", "--compression", default="auto", help="Specify the compression method to use for concatenation.");
|
|
58
|
-
argparser.add_argument("-level", "--level", default=None, help="Specify the compression level for concatenation.");
|
|
57
|
+
argparser.add_argument("-P", "-compression", "--compression", default="auto", help="Specify the compression method to use for concatenation.");
|
|
58
|
+
argparser.add_argument("-L", "-level", "--level", default=None, help="Specify the compression level for concatenation.");
|
|
59
59
|
argparser.add_argument("-t", "-tar", "--converttar", action="store_true", help="Convert a tar file to a catfile.");
|
|
60
60
|
argparser.add_argument("-z", "-zip", "--convertzip", action="store_true", help="Convert a zip file to a catfile.");
|
|
61
|
-
argparser.add_argument("-rar", "--convertrar", action="store_true", help="Convert a rar file to a catfile.");
|
|
61
|
+
argparser.add_argument("-r", "-rar", "--convertrar", action="store_true", help="Convert a rar file to a catfile.");
|
|
62
62
|
argparser.add_argument("-T", "--text", action="store_true", help="Read file locations from a text file.");
|
|
63
63
|
getargs = argparser.parse_args();
|
|
64
64
|
|