-
Notifications
You must be signed in to change notification settings - Fork 50
/
file_writer.py
61 lines (52 loc) · 2.01 KB
/
file_writer.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
class FileWriter:
# TODO: cleanup output_file
def __init__(self, data, out_format=None, country="Macedonia"):
self.data = data
self.format = out_format
self.country = country
def output_file(self):
"""
Write list of hotels in file
:return:
"""
format = self.format.lower()
file_name = ""
if format == "json" or format is None:
import json
file_name = "hotels-in-{country}.txt".format(
country=self.country.replace(" ", "-")
)
with open(file_name, "w") as outfile:
json.dump(list(self.data), outfile, indent=2, ensure_ascii=False)
elif format == "excel":
from openpyxl import Workbook
wb = Workbook()
ws = wb.active
heading1 = "#"
heading2 = "Accommodation"
ws.cell(row=1, column=1).value = heading1
ws.cell(row=1, column=2).value = heading2
for i, item in enumerate(self.data):
# Extract number and title from string
tokens = item.split()
n = tokens[0]
title = " ".join(tokens[2:])
ws.cell(row=i + 2, column=1).value = n
ws.cell(row=i + 2, column=2).value = title
file_name = "hotels-in-{country}.xls".format(
country=self.country.replace(" ", "-")
)
wb.save(file_name)
elif format == "csv":
file_name = "hotels-in-{country}.csv".format(
country=self.country.replace(" ", "-")
)
with open(file_name, "w") as outfile:
for i, item in enumerate(self.data):
# Extract number and title from string
tokens = item.split()
n = tokens[0]
title = " ".join(tokens[2:])
s = n + ", " + title + "\n"
outfile.write(s)
return file_name