summaryrefslogtreecommitdiff
path: root/entities/location.py
blob: f782e1f52f12424fada2e824b5ac8b9fefc68ed7 (plain)
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
import json

from entities.basic_entity import BasicEntity


class Location(BasicEntity):
    def __init__(self, name, types_of_place, name_in_langs, comments_list):
        self.name = name
        self.types_of_place = types_of_place
        self.name_in_langs = name_in_langs
        self.comments_list = comments_list

    CSV_FIELDS = ["name", "comments"]
    TYPE = "LOCATION"


    def print_entity(self):
        print("Name = " + self.name)
        print("Name in langs = " + str(self.name_in_langs))
        print("Types = " + str(self.types_of_place))
        print("Comments = " + str(self.comments_list))

    def to_csv_dict(self):
        return {'name': self.name,
                'comments': json.dumps(self.comments_list, ensure_ascii=False)}