Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ import os
|
|
7 |
from zipfile import ZipFile
|
8 |
import shutil
|
9 |
import numpy as np
|
10 |
-
import re
|
11 |
|
12 |
title="批量下载图片"
|
13 |
description="""
|
@@ -31,8 +31,8 @@ def download_image(name,number,overwrite):
|
|
31 |
|
32 |
# 因为在使用Huggingface的时候,其不能访问本地电脑,所以直接内置一个地址
|
33 |
dirs='E:\图片'
|
34 |
-
name=re.sub(r'[,]{1,100}',',',name)
|
35 |
-
names=name.split('
|
36 |
names=[i for i in names if i != '']
|
37 |
if len(names)==0:
|
38 |
return f"请输入要下载的图片名称"
|
|
|
7 |
from zipfile import ZipFile
|
8 |
import shutil
|
9 |
import numpy as np
|
10 |
+
# import re
|
11 |
|
12 |
title="批量下载图片"
|
13 |
description="""
|
|
|
31 |
|
32 |
# 因为在使用Huggingface的时候,其不能访问本地电脑,所以直接内置一个地址
|
33 |
dirs='E:\图片'
|
34 |
+
# name=re.sub(r'[,]{1,100}',',',name)
|
35 |
+
names=name.split(' ')
|
36 |
names=[i for i in names if i != '']
|
37 |
if len(names)==0:
|
38 |
return f"请输入要下载的图片名称"
|