Compare commits
2 Commits
d96eeb4bef
...
a3301572e1
Author | SHA1 | Date | |
---|---|---|---|
a3301572e1 | |||
b73f374625 |
@ -1,3 +1,10 @@
|
||||
exif==1.6.1
|
||||
imageio==2.37.0
|
||||
Jinja2==3.1.6
|
||||
Markdown==3.8
|
||||
MarkupSafe==3.0.2
|
||||
numpy==2.2.3
|
||||
pillow==11.1.0
|
||||
plum-py==0.8.7
|
||||
progress==1.6
|
||||
rawpy==0.24.0
|
||||
|
@ -18,7 +18,7 @@ def main():
|
||||
input_folder, output_folder = argument_parsing()
|
||||
files: list[str] = [os.path.join(input_folder, f) for f in os.listdir(input_folder)]
|
||||
files = [f for f in files if os.path.isfile(f)]
|
||||
with Bar("generating...", max=len(files)) as bar:
|
||||
with Bar("copying...", max=len(files)) as bar:
|
||||
for file in files:
|
||||
with open(file, 'rb') as f:
|
||||
image_data = f.read()
|
||||
|
Loading…
Reference in New Issue
Block a user