Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,8 +7,8 @@ import os # 경로 확인 및 생성용
|
|
7 |
import re # 특수문자 제거를 위한 정규식 사용
|
8 |
|
9 |
def clean_text(text):
|
10 |
-
# 정규식을 사용하여 특수문자를 제거하되, '-'는 제외
|
11 |
-
return re.sub(r'[^\w\s
|
12 |
|
13 |
def extract_keywords(file):
|
14 |
# 엑셀 파일 읽기
|
@@ -56,6 +56,11 @@ def extract_keywords(file):
|
|
56 |
logo_path = "ssboost-logo.png" # 실제 이미지 파일 경로
|
57 |
if os.path.exists(logo_path):
|
58 |
img = Image(logo_path)
|
|
|
|
|
|
|
|
|
|
|
59 |
# A1 셀에 이미지 삽입
|
60 |
worksheet.add_image(img, "A1")
|
61 |
else:
|
|
|
7 |
import re # 특수문자 제거를 위한 정규식 사용
|
8 |
|
9 |
def clean_text(text):
|
10 |
+
# 정규식을 사용하여 특수문자를 제거하되, '-'와 '+'는 제외
|
11 |
+
return re.sub(r'[^\w\s-+]', '', text)
|
12 |
|
13 |
def extract_keywords(file):
|
14 |
# 엑셀 파일 읽기
|
|
|
56 |
logo_path = "ssboost-logo.png" # 실제 이미지 파일 경로
|
57 |
if os.path.exists(logo_path):
|
58 |
img = Image(logo_path)
|
59 |
+
|
60 |
+
# 이미지 크기 조정 (1cm x 5.24cm)
|
61 |
+
img.width = 37 # 약 1cm
|
62 |
+
img.height = 148 # 약 5.24cm
|
63 |
+
|
64 |
# A1 셀에 이미지 삽입
|
65 |
worksheet.add_image(img, "A1")
|
66 |
else:
|