From bfc1e49c513dbbf9b53d8c504d7ff23fc3c4d301 Mon Sep 17 00:00:00 2001 From: Taegon Date: Sun, 2 Jun 2024 21:37:39 +0900 Subject: [PATCH] several changes in main.py --- concated.json | 11 +++++++++++ main.py | 24 +++++++++++++++--------- 2 files changed, 26 insertions(+), 9 deletions(-) create mode 100644 concated.json diff --git a/concated.json b/concated.json new file mode 100644 index 0000000..4dca70d --- /dev/null +++ b/concated.json @@ -0,0 +1,11 @@ +{"English":"India and Japan prime ministers meet in Tokyo","German":"Die Premierminister Indiens und Japans trafen sich in Tokio."} +{"English":"India's new prime minister, Narendra Modi\\ is meeting his Japanese counterpart, Shinzo Abe, in Tokyo to discuss economic and security ties, on his first major foreign visit since winning May's election.\",","German":"Indiens neuer Premierminister Narendra Modi\\ trifft bei seinem ersten wichtigen Auslandsbesuch seit seinem Wahlsieg im Mai seinen japanischen Amtskollegen Shinzo Abe in Toko, um wirtschaftliche und sicherheitspolitische Beziehungen zu besprechen."} +{"English":"Mr Modi is on a five-day trip to Japan to strengthen economic ties with the third largest economy in the world.","German":"Herr Modi befindet sich auf einer fünftägigen Reise nach Japan, um die wirtschaftlichen Beziehungen mit der drittgrößten Wirtschaftsnation der Welt zu festigen."} +{"English":"High on the agenda are plans for greater nuclear co-operation.","German":"Pläne für eine stärkere kerntechnische Zusammenarbeit stehen ganz oben auf der Tagesordnung."} +{"English":"India is also reportedly hoping for a deal on defence collaboration between the two nations.","German":"Berichten zufolge hofft Indien darüber hinaus auf einen Vertrag zur Verteidigungszusammenarbeit zwischen den beiden Nationen."} +{"English":"Karratha police arrest 20-year-old after \"high speed motorcycle chase\"","German":"Polizei von Karratha verhaftet 20-Jährigen \"nach schneller Motorradjagd\""} +{"English":"A motorcycle has been seized after it was ridden at 125km\/h in a 70km\/h zone and through bushland to escape police in the Pilbara.","German":"Ein Motorrad wurde beschlagnahmt, nachdem der Fahrer es mit 125 km\/h in einer 70 km\/h-Zone und durch Buschland gefahren hatte, um der Polizei in Bilbara zu entkommen."} +{"English":"Traffic police on patrol in Karratha this morning tried to pull over a blue motorcycle when they spotted it reaching 125km\/h as it pulled out of a service station on Bathgate Road.","German":"Verkehrspolizisten in Karratha versuchten heute morgen, ein blaues Motorrad zu stoppen, nachdem sie es dabei beobachtet hatten, wie es mit 125 km\/h eine Tankstelle auf der Bathdate Road verließ."} +{"English":"Police say the rider then failed to stop and continued on to Burgess Road before turning into bushland, causing the officers to lose sight of it.","German":"Die Polizei berichtet, dass der Fahrer die Haltesignale dann ignorierte und weiter auf der Burgess Road fuhr, bevor er in das Buschland abbog, wo die Beamten es aus den Augen verloren."} +{"English":"The motorcycle and a person matching the description of the rider was then spotted at a house on Walcott Way in Bulgarra.","German":"Das Motorrad sowie eine Person, die der Beschreibung des Fahrers entsprach wurden später bei einem Haus im Walcott Way in Bulgarra gesehen."} +{"English":"","German":""} diff --git a/main.py b/main.py index 0d1f17b..7574d9b 100644 --- a/main.py +++ b/main.py @@ -2,7 +2,10 @@ def path_to_file_list(path: str) -> List[str]: """Reads a file and returns a list of lines in the file""" - li = open(path, 'w') + # w change to r + # split + lines = open(path, 'r').read().split('\n') + # li to lines return lines def train_file_list_to_json(english_file_list: List[str], german_file_list: List[str]) -> List[str]: @@ -10,14 +13,14 @@ def train_file_list_to_json(english_file_list: List[str], german_file_list: List # Preprocess unwanted characters def process_file(file): if '\\' in file: - file = file.replace('\\', '\\') + file = file.replace('\\', '\\\\') if '/' or '"' in file: file = file.replace('/', '\\/') file = file.replace('"', '\\"') return file # Template for json file - template_start = '{\"German\":\"' + template_start = '{\"English\":\"' template_mid = '\",\"German\":\"' template_end = '\"}' @@ -25,17 +28,18 @@ def process_file(file): processed_file_list = [] for english_file, german_file in zip(english_file_list, german_file_list): english_file = process_file(english_file) - english_file = process_file(german_file) + german_file = process_file(german_file) - processed_file_list.append(template_mid + english_file + template_start + german_file + template_start) + processed_file_list.append(template_start + english_file + template_mid + german_file + template_end) return processed_file_list def write_file_list(file_list: List[str], path: str) -> None: """Writes a list of strings to a file, each string on a new line""" - with open(path, 'r') as f: + # r to w + with open(path, 'w') as f: for file in file_list: - f.write('\n') + f.write(file + '\n') if __name__ == "__main__": path = './' @@ -43,8 +47,10 @@ def write_file_list(file_list: List[str], path: str) -> None: english_path = './english.txt' english_file_list = path_to_file_list(english_path) - german_file_list = train_file_list_to_json(german_path) + # train_file_list_to_json to path_to_file_list + german_file_list = path_to_file_list(german_path) - processed_file_list = path_to_file_list(english_file_list, german_file_list) + # path to train + processed_file_list = train_file_list_to_json(english_file_list, german_file_list) write_file_list(processed_file_list, path+'concated.json')