diff options
author | emkael <emkael@tlen.pl> | 2017-09-06 21:34:28 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-09-06 21:34:28 +0200 |
commit | 0db5c92dfb59d9ff0dbdcb1d2ef6174ff638efa8 (patch) | |
tree | c32bbd18ef231d102241dc4f7138951ce9da1c64 /bin | |
parent | 8c9ebc4a0d461a0f7cc408094847a01920cc2755 (diff) |
Back to 2000 entries for rankings
Diffstat (limited to 'bin')
-rw-r--r-- | bin/convert-cezar-ranking-csv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/convert-cezar-ranking-csv.py b/bin/convert-cezar-ranking-csv.py index aa30a23..4dcee92 100644 --- a/bin/convert-cezar-ranking-csv.py +++ b/bin/convert-cezar-ranking-csv.py @@ -5,5 +5,5 @@ data = list(csv.reader(file(sys.argv[1]), delimiter=";")) output = csv.writer(file(sys.argv[2], 'w')) date = data[1][3] -for row in data[4:1004]: +for row in data[4:-1]: output.writerow([row[0], date, row[2], row[1]]) |