Spaces:
Sleeping
Sleeping
Commit
Β·
ead8288
1
Parent(s):
9abc8de
Update app.py
Browse files
app.py
CHANGED
@@ -46,25 +46,23 @@ def get_csv_file(csv_docs):
|
|
46 |
import json
|
47 |
|
48 |
def get_json_file(docs):
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
return text_list
|
68 |
|
69 |
|
70 |
# λ¬Έμλ€μ μ²λ¦¬νμ¬ ν
μ€νΈ μ²ν¬λ‘ λλλ ν¨μμ
λλ€.
|
|
|
46 |
import json
|
47 |
|
48 |
def get_json_file(docs):
|
49 |
+
text_list = []
|
50 |
+
|
51 |
+
for file in docs:
|
52 |
+
if file.type == 'application/json':
|
53 |
+
# Read the JSON content from the file
|
54 |
+
json_content = json.load(file)
|
55 |
+
|
56 |
+
# Extract text from the JSON content
|
57 |
+
if isinstance(json_content, dict):
|
58 |
+
text = ' '.join(str(value) for value in json_content.values())
|
59 |
+
text_list.append(text)
|
60 |
+
elif isinstance(json_content, list):
|
61 |
+
text = ' '.join(str(item) for item in json_content)
|
62 |
+
text_list.append(text)
|
63 |
+
|
64 |
+
return text_list
|
65 |
+
|
|
|
|
|
66 |
|
67 |
|
68 |
# λ¬Έμλ€μ μ²λ¦¬νμ¬ ν
μ€νΈ μ²ν¬λ‘ λλλ ν¨μμ
λλ€.
|