-
Notifications
You must be signed in to change notification settings - Fork 17
/
steam-reviews-stats.py
67 lines (57 loc) · 2.58 KB
/
steam-reviews-stats.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Andrea Esuli ([email protected])
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import argparse
import csv
import json
import sys
from collections import defaultdict
def process_reviews(inputfile_name, output_dir):
with open(inputfile_name, mode="r", encoding="utf-8") as inputfile:
totalreviews = 0
totalhours = 0
users = defaultdict(lambda: defaultdict(float))
games = defaultdict(lambda: defaultdict(float))
reader = csv.reader(inputfile)
for (id_, helpful, funny, username, owned, numrev, recco, time, posted, content) in reader:
time = float(time)
totalreviews += 1
totalhours += time
users[username]['games'] += 1
users[username]['time'] += time
games[id_]['reviews'] += 1
games[id_]['time'] += time
if totalreviews % 1000 == 0:
print('\r%i' % totalreviews, end='', flush=True, file=sys.stderr)
summary = {'reviews': totalreviews,
'hours': totalhours,
'users': len(users),
'games': len(games)}
with open(output_dir + '/summary.json', mode='w', encoding="utf-8") as f:
json.dump(summary, f)
with open(output_dir + '/users.json', mode='w', encoding="utf-8") as f:
json.dump(users, f)
with open(output_dir + '/games.json', mode='w', encoding="utf-8") as f:
json.dump(games, f)
def main():
parser = argparse.ArgumentParser(description='Stats from Steam reviews')
parser.add_argument(
'-i', '--input', help='Input file of reviews', required=False, default="./data/reviews.csv")
parser.add_argument(
'-o', '--output', help='Output dir for stats', required=False, default="./data/")
args = parser.parse_args()
process_reviews(args.input, args.output)
if __name__ == '__main__':
main()