Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,60 +2,56 @@ import gradio as gr
|
|
2 |
import pandas as pd
|
3 |
import logging
|
4 |
from datetime import datetime
|
5 |
-
import os
|
6 |
|
7 |
# 로깅 설정
|
8 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
9 |
|
10 |
-
def analyze_reviews(
|
11 |
try:
|
12 |
-
logging.info("파일 업로드
|
13 |
# 엑셀 파일 읽기
|
14 |
-
df = pd.read_excel(
|
15 |
-
logging.info("엑셀 파일 읽기
|
16 |
-
|
17 |
-
# 현재 연도
|
18 |
current_year = 2025
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
df = df.
|
25 |
-
|
26 |
-
df['Month'] = df['B'].dt.month
|
27 |
-
|
28 |
# 최근 3년 데이터 필터링
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
32 |
# 년월별 리뷰 건수 집계
|
33 |
-
|
34 |
-
review_counts =
|
35 |
-
logging.info("
|
36 |
-
|
37 |
-
# 새로운 시트에
|
38 |
-
with pd.ExcelWriter(
|
39 |
-
review_counts.to_excel(writer, sheet_name='월별 리뷰건수', index=False, header=
|
40 |
-
logging.info("새로운 시트 '월별 리뷰건수'
|
41 |
-
|
42 |
-
return
|
43 |
except Exception as e:
|
44 |
-
logging.error("
|
45 |
return None
|
46 |
|
47 |
-
#
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
file_output = gr.File(label="분석된 엑셀 파일 다운로드", file_types=[".xlsx"], type="filepath")
|
55 |
-
|
56 |
-
analyze_button.click(fn=analyze_reviews, inputs=file_input, outputs=file_output)
|
57 |
|
58 |
-
|
59 |
|
|
|
60 |
if __name__ == "__main__":
|
61 |
-
|
|
|
2 |
import pandas as pd
|
3 |
import logging
|
4 |
from datetime import datetime
|
|
|
5 |
|
6 |
# 로깅 설정
|
7 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
8 |
|
9 |
+
def analyze_reviews(file):
|
10 |
try:
|
11 |
+
logging.info("파일 업로드 시작.")
|
12 |
# 엑셀 파일 읽기
|
13 |
+
df = pd.read_excel(file.name, engine='openpyxl')
|
14 |
+
logging.info("엑셀 파일 읽기 완료.")
|
15 |
+
|
16 |
+
# 현재 연도 설정 (2025년 기준)
|
17 |
current_year = 2025
|
18 |
+
start_date = datetime(current_year - 3, 1, 1)
|
19 |
+
end_date = datetime(current_year, 12, 31)
|
20 |
+
|
21 |
+
logging.info(f"데이터 필터링: {start_date}부터 {end_date}까지.")
|
22 |
+
# B열을 날짜로 변환
|
23 |
+
df['B'] = pd.to_datetime(df.iloc[:, 1])
|
24 |
+
|
|
|
|
|
25 |
# 최근 3년 데이터 필터링
|
26 |
+
mask = (df['B'] >= start_date) & (df['B'] <= end_date)
|
27 |
+
filtered_df = df.loc[mask]
|
28 |
+
logging.info(f"필터링된 데이터 행 수: {len(filtered_df)}.")
|
29 |
+
|
30 |
# 년월별 리뷰 건수 집계
|
31 |
+
filtered_df['Year-Month'] = filtered_df['B'].dt.strftime('%Y-%m')
|
32 |
+
review_counts = filtered_df.groupby('Year-Month').size().reset_index(name='리뷰건수')
|
33 |
+
logging.info("년월별 리뷰 건수 집계 완료.")
|
34 |
+
|
35 |
+
# 새로운 시트에 작성
|
36 |
+
with pd.ExcelWriter(file.name, engine='openpyxl', mode='a') as writer:
|
37 |
+
review_counts.to_excel(writer, sheet_name='월별 리뷰건수', index=False, header=['A열', 'B열'])
|
38 |
+
logging.info("새로운 시트 '월별 리뷰건수' 작성 완료.")
|
39 |
+
|
40 |
+
return file.name
|
41 |
except Exception as e:
|
42 |
+
logging.error(f"오류 발생: {e}")
|
43 |
return None
|
44 |
|
45 |
+
# Gradio 인터페이스 구성
|
46 |
+
with gr.Blocks() as demo:
|
47 |
+
gr.Markdown("# 리뷰 분석 스페이스")
|
48 |
+
with gr.Row():
|
49 |
+
file_input = gr.File(label="원본 엑셀 파일 업로드")
|
50 |
+
analyze_button = gr.Button("분석")
|
51 |
+
file_output = gr.File(label="분석된 엑셀 파일 다운로드", type="filepath")
|
|
|
|
|
|
|
52 |
|
53 |
+
analyze_button.click(fn=analyze_reviews, inputs=file_input, outputs=file_output)
|
54 |
|
55 |
+
# 스페이스 실행
|
56 |
if __name__ == "__main__":
|
57 |
+
demo.launch()
|