mirror of
https://github.com/Xevion/mee6-scraper.git
synced 2025-12-06 01:15:31 -06:00
7 lines
180 B
Python
7 lines
180 B
Python
from _parser import *
|
|
|
|
Board = Leaderboard(120)
|
|
import json, os, sys
|
|
with open(os.path.join(sys.path[0], 'data.json'), 'w+') as data:
|
|
json.dump(Board.get(), data)
|
|
Board.print() |