-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathchen_cities_converter.py
81 lines (55 loc) · 2.49 KB
/
chen_cities_converter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import utils
from pathlib2 import Path
from argparse import ArgumentParser
import os
import wiki_utils
def main(args):
utils.read_config_file(args.config)
utils.config.update(args.__dict__)
file_path = args.input
output_folder_path = args.output
special_delim_sign_path = args.sign
file = open(str(special_delim_sign_path), "r")
special_delim_sign = file.read().encode('utf-8').split("\n")[0]
file.close()
file = open(str(file_path ), "r")
raw_content = file.read()
file.close()
result_file_path = None
sentences = [s for s in raw_content.decode('utf-8').strip().split("\n") if len(s) > 0 and s != "\n"]
last_doc_id = 0
last_topic = ""
for sentence in sentences:
first_comma_index = sentence.index(',')
second_comma_index = sentence[first_comma_index + 1 :].index(',')
current_doc_id = sentence[0:first_comma_index]
sign_index = sentence.index(special_delim_sign)
start_sentence_index = sign_index + 1
actual_sentence = sentence[start_sentence_index:]
current_topic = sentence[first_comma_index + second_comma_index + 2:sign_index]
if (current_doc_id != last_doc_id):
last_doc_id = current_doc_id
print 'new file index'
print last_doc_id
if (result_file_path != None):
result_file.close()
result_file_path = os.path.join(output_folder_path ,str(current_doc_id) + ".text")
result_file = open(str(result_file_path), "w")
last_topic = ""
if (current_topic != last_topic):
last_topic = current_topic
level = 1 if (current_topic == "TOP-LEVEL SEGMENT") else 2
result_file.write((wiki_utils.get_segment_seperator(level, current_topic) + ".").encode('utf-8'))
result_file.write("\n".encode('utf-8'))
if ('\n' in sentence):
print 'back slash in sentnece'
result_file.write(actual_sentence.encode('utf-8'))
#result_file.write(".".encode('utf-8'))
result_file.write("\n".encode('utf-8'))
if __name__ == '__main__':
parser = ArgumentParser()
parser.add_argument('--config', help='Path to config.json', default='config.json')
parser.add_argument('--input', help='Chen text file', required=True)
parser.add_argument('--output', help='folder for converted files', required=True)
parser.add_argument('--sign', help='folder for converted files', required=True)
main(parser.parse_args())