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