renumSeq 1.4.0__py3-none-any.whl → 1.4.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: renumSeq
3
- Version: 1.4.0
3
+ Version: 1.4.1
4
4
  Summary: Tool to renumber image sequences.
5
5
  Home-page: https://github.com/jrowellfx/renumSeq
6
6
  Author: James Philip Rowell
@@ -29,12 +29,12 @@ It also allows you adjust the padding of the frame numbers.
29
29
  `renumseq` uses the syntax of the native output of
30
30
  [`lsseq`](https://github.com/jrowellfx/lsseq) to specify
31
31
  the sequence to be renumbered. Therefore it is recommended to
32
- also install `lsseq` as it makes using `renumseq` easier.
32
+ use `lsseq` as it makes using `renumseq` easier.
33
33
 
34
34
  For example, use `lsseq` to list a sequence, then
35
35
  cut and paste its
36
36
  output as the arguments to `renumseq` with the appropriate
37
- arguments for setting the offset.
37
+ arguments for setting the offset or new start-frame.
38
38
 
39
39
  `renumseq` was written to be safe in that it won't
40
40
  unintentionally overwrite any existing files
@@ -0,0 +1,8 @@
1
+ renumseq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ renumseq/__main__.py,sha256=gKc1Vepf2nhLTfJAZcdC_nswjXkG0vt-qnihfPYEqgw,25868
3
+ renumSeq-1.4.1.dist-info/LICENSE,sha256=R6fdEb8ZKpCYTdOM-ZNPs2bVjqLdDfUwiDcx1xP0dCk,1620
4
+ renumSeq-1.4.1.dist-info/METADATA,sha256=TJrzwZdbW6_om5pg-csNfOkw_AOaaNEC8ZAK3ePjI4c,3511
5
+ renumSeq-1.4.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
6
+ renumSeq-1.4.1.dist-info/entry_points.txt,sha256=Vu6IBWCxwfVRG3XOZi4ENlMnpe4igvepbHfKy8NGuOY,52
7
+ renumSeq-1.4.1.dist-info/top_level.txt,sha256=N4wzD8IZmW7curkqRcVgXNstK4X3cqZ4K1tVNYsukDI,9
8
+ renumSeq-1.4.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
renumseq/__main__.py CHANGED
@@ -54,7 +54,7 @@ import glob
54
54
  # MINOR version for added functionality in a backwards compatible manner
55
55
  # PATCH version for backwards compatible bug fixes
56
56
  #
57
- VERSION = "1.4.0"
57
+ VERSION = "1.4.1"
58
58
 
59
59
  PROG_NAME = "renumseq"
60
60
 
@@ -122,15 +122,9 @@ def main():
122
122
  Renumber the frame range of each SEQ listed on the command line.
123
123
  SEQ should be specified using lsseq's native format.
124
124
 
125
- Protip: Turning off globbing, or enclosing SEQ in quotes, or placing
126
- backslashes ahead of '[' and ']' will likely be necessary to turn off the special
125
+ Protip: Enclosing SEQ in quotes will turn off the special
127
126
  treatment of '[' and ']' by the shell.
128
127
 
129
- Caution: The files in the sequence MUST BE correctly padded.
130
- Pay attention to lsseq's --showBadPadding for reports of badly padded frame
131
- numbers and fix them before renumbering a sequence with this utility.
132
- (This is a rare issue that can be fixed with the command 'fixSeqPadding'.)
133
-
134
128
  Example usage:
135
129
  $ lsseq
136
130
  aaa.[001-005].tif
@@ -174,8 +168,7 @@ def main():
174
168
  help="set the padding of the frame numbers to be PAD digits. \
175
169
  The default action is to leave the padding unchanged. Note, \
176
170
  lsseq's native format output properly lists the sequence \
177
- range with appropriate padding and can also report when there are \
178
- incorrectly padded frame-numbers with --showBadPadding")
171
+ range with appropriate padding.")
179
172
  p.add_argument("--rename", type=str, nargs=1,
180
173
  dest="newSeqName",
181
174
  default=[],
@@ -198,15 +191,12 @@ def main():
198
191
  metavar="[CC]YYMMDD[-hh[mm[ss]]]",
199
192
  help="If no date is provided then update the access time of \
200
193
  the files being renumbered to the current time. \
201
- Otherwise, use the date provided to update the \
202
- file's access time. (Default: renumbering a sequence leaves \
203
- the access time unchanged.) \
204
- When specifying the date, the optional CC (century) defaults to the current century. \
205
- The optional '-hh' (hours), 'mm' (minutes) or 'ss' (seconds) \
206
- default to zero if not specified. \
207
- Note: if this is the last argument on the command line and the optional \
208
- date was not specified then \
209
- append '--' before the list of SEQs to delineate the end of the options.")
194
+ Otherwise, use the date provided to update the file's access time. \
195
+ The optional CC (century) defaults to the current century and \
196
+ '-hh' (hours), 'mm' (minutes) or 'ss' (seconds) \
197
+ default to zero if not specified.\
198
+ Note: the default action is to leave \
199
+ the access time of the SEQ unchanged. ")
210
200
 
211
201
  p.add_argument("--dryRun", "--dryrun", action="store_true",
212
202
  dest="dryRun", default=False,
@@ -1,8 +0,0 @@
1
- renumseq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- renumseq/__main__.py,sha256=BftfFHJs1NhcHUr5HoeutkoxYKfyuY8SzcH9EF7lhMM,26635
3
- renumSeq-1.4.0.dist-info/LICENSE,sha256=R6fdEb8ZKpCYTdOM-ZNPs2bVjqLdDfUwiDcx1xP0dCk,1620
4
- renumSeq-1.4.0.dist-info/METADATA,sha256=35NbLlJh5cWAMzqrnywcs1OpxjWf6v8gadVxNcbEG8U,3501
5
- renumSeq-1.4.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
6
- renumSeq-1.4.0.dist-info/entry_points.txt,sha256=Vu6IBWCxwfVRG3XOZi4ENlMnpe4igvepbHfKy8NGuOY,52
7
- renumSeq-1.4.0.dist-info/top_level.txt,sha256=N4wzD8IZmW7curkqRcVgXNstK4X3cqZ4K1tVNYsukDI,9
8
- renumSeq-1.4.0.dist-info/RECORD,,