-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitterio.py
76 lines (71 loc) · 2.64 KB
/
twitterio.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
import json
import sys
from model.tweet import Tweet
class TwitterIO():
@staticmethod
def read_file(file_location):
"""
Leest bestand en returned in json formaat
:param file_location: str
:return: dict
"""
try:
with open(file_location) as file:
return json.loads(file.read())
except IOError:
print('Bestand niet gevonden')
except Exception as e:
print('Er is iets fout gegaan bij het lezen van een bestand')
print(e)
@staticmethod
def get_tweets_from_file(file_location):
"""
Haalt tweets op uit bestand en geeft terug als json
:param file_location: str
:return: List(Tweet)
"""
try:
tweets = []
data = TwitterIO.read_file(file_location)
for tweet in data:
tweets.append(Tweet(tweet['id'], tweet['datetime'], tweet['message']))
return tweets
except IOError:
print('Bestand niet gevonden.')
except Exception as e:
print('Er is iets fout gegaan bij het ophalen van alle tweets uit een bestand')
print(e.message)
@staticmethod
def add_tweet_to_file(file_location, tweet):
"""
Voegt tweet to aan bestand file_location
:param file_location: str
:param tweet: Tweet object
"""
try:
tweetlist = TwitterIO.read_file(file_location)
tweetlist.append({'id': tweet.getId(),'datetime': tweet.getDatetime(), 'message': tweet.getText()})
with open(file_location, 'w') as file:
json.dump(tweetlist, file, indent=4)
except IOError:
print('Bestand niet gevonden.')
except Exception as e:
print('Er is iets fout gegaan bij het toevoegen van een tweet aan een bestand')
print(e.message)
@staticmethod
def remove_tweet_from_file(file_location, id):
"""
Verwijdert tweet uit bestand met een bepaald ID
:param file_location: str
:param id: str
"""
try:
tweetlist = TwitterIO.read_file(file_location)
result = [tweet for tweet in tweetlist if not (tweet['id'] == id)]
with open(file_location, 'w') as file:
json.dump(result, file, indent=4)
except IOError:
print('Bestand niet gevonden.')
except Exception as e:
print('Er is iets fout gegaan bij het verwijderen van een tweet uit een bestand')
print(e.message)