-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_words_to_query.py
49 lines (32 loc) · 1.15 KB
/
raw_words_to_query.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
formatted_lines = []
def get_coco_formatted(raw_line):
return "(uuid_generate_v4(), '%s', 'coco')," % raw_line.rstrip()
def get_spacerace_formatted(raw_line):
return "(uuid_generate_v4(), '%s', 'spacerace')," % raw_line.rstrip()
def get_boatrace_formatted(raw_line):
temp_string = "(uuid_generate_v4(), '%s', 'boatrace')," % raw_line.rstrip()
return temp_string.replace("\n", "\\n")
temp_spacerace_line = ""
with open('boatrace_words.txt') as fp:
line = fp.readline()
temp_spacerace_line += line
# formatted_line = get_spacerace_formatted(line)
# formatted_lines.append(formatted_line)
while line:
line = fp.readline()
if line == "//\n":
formatted_line = get_boatrace_formatted(temp_spacerace_line)
formatted_lines.append(formatted_line)
temp_spacerace_line = ""
else:
temp_spacerace_line += line
# with open('spacerace_words.txt') as fp:
# line = fp.readline()
# formatted_line = get_spacerace_formatted(line)
# formatted_lines.append(formatted_line)
# while line:
# line = fp.readline()
# formatted_line = get_spacerace_formatted(line)
# formatted_lines.append(formatted_line)
for item in formatted_lines:
print item