ayousanz commited on
Commit
d9c6f6b
1 Parent(s): c3957a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -4,4 +4,45 @@ language:
4
  - ja
5
  ---
6
 
7
- OSCOR-2301-jaのcontent部分だけをテキスト化したもの
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - ja
5
  ---
6
 
7
+ OSCOR-2301-jaのcontent部分だけをテキスト化したもの
8
+
9
+ データセットからcontentのvalueだけ取得する際には、以下のコードで実行しました
10
+
11
+ ```python
12
+ import json
13
+ import os
14
+ import sys
15
+
16
+ # コマンドライン引数からフォルダ名を取得する
17
+ if len(sys.argv) < 2:
18
+ print("使用法: python script.py folder_name")
19
+ sys.exit(1)
20
+
21
+ folder_name = sys.argv[1]
22
+
23
+ # フォルダ内のすべての .json ファイルを処理する
24
+ for filename in os.listdir(folder_name):
25
+ if filename.endswith(".txt"):
26
+ input_file = os.path.join(folder_name, filename)
27
+ output_file = os.path.splitext(filename)[0] + "_convert.txt"
28
+ output_path = os.path.join(folder_name, output_file)
29
+
30
+ # 出力テキストファイルを開く
31
+ with open(output_path, "w", encoding="utf-8") as outfile:
32
+ # 入力JSONファイルを1行ずつ読み込む
33
+ with open(input_file, "r", encoding="utf-8") as infile:
34
+ for line in infile:
35
+ # JSONを解析する
36
+ data = json.loads(line)
37
+
38
+ # "content" フィールドが存在する場合のみ処理する
39
+ if "content" in data:
40
+ content = data["content"]
41
+
42
+ # "content" の内容をテキストファイルに書き込む
43
+ outfile.write(content + "\n")
44
+
45
+ print(f"変換が完了しました。出力ファイル: {output_file}")
46
+
47
+ print("すべてのファイルの変換が完了しました。")
48
+ ```