summaryrefslogtreecommitdiffstats
path: root/data/wikidata/cache.py
blob: abb1bd84e80f6fdd79dd95a75ad0278716300600 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/env python
# Copyright (C) 2020 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.

import json
import os
import sys

class Cache(object):
    def __init__(self):
        file_valid = False

        self.path = os.path.dirname(sys.argv[0]) + os.sep + 'cache.json'

        if os.path.exists(self.path):
            self.file = open(self.path, 'r')
            big_string = self.file.read()
            self.json = json.loads(big_string)
            file_valid = True

        if not file_valid:
            self.file = open(self.path, 'w')
    def close(self):
        self.file.close()
    def load(self):
        return self.json
    def store(self, data):
        json_str = str(json.dumps(data))
        self.file.write(json_str)
    def __str__(self):
        pass
    def __repr__(self):
        pass