nijoow commited on
Commit
abbcb3c
ยท
1 Parent(s): 78f267a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -38,19 +38,19 @@ def get_pdf_text(pdf_docs):
38
  # ๊ณผ์ œ
39
  # ์•„๋ž˜ ํ…์ŠคํŠธ ์ถ”์ถœ ํ•จ์ˆ˜๋ฅผ ์ž‘์„ฑ
40
 
41
- def get_text_file(txt_docs):
42
  text_list = []
43
  for doc in docs:
44
  text_list.append(get_text_from_text_file(doc))
45
  return text_list
46
 
47
- def get_csv_file(csv_docs):
48
  text_list = []
49
  for doc in docs:
50
  text_list.append(get_text_from_csv_file(doc))
51
  return text_list
52
 
53
- def get_json_file(json_docs):
54
  text_list = []
55
  for doc in docs:
56
  text_list.append(get_text_from_json_file(doc))
 
38
  # ๊ณผ์ œ
39
  # ์•„๋ž˜ ํ…์ŠคํŠธ ์ถ”์ถœ ํ•จ์ˆ˜๋ฅผ ์ž‘์„ฑ
40
 
41
+ def get_text_file(docs):
42
  text_list = []
43
  for doc in docs:
44
  text_list.append(get_text_from_text_file(doc))
45
  return text_list
46
 
47
+ def get_csv_file(docs):
48
  text_list = []
49
  for doc in docs:
50
  text_list.append(get_text_from_csv_file(doc))
51
  return text_list
52
 
53
+ def get_json_file(docs):
54
  text_list = []
55
  for doc in docs:
56
  text_list.append(get_text_from_json_file(doc))