summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..d9a9c01
--- /dev/null
+++ b/main.py
@@ -0,0 +1,18 @@
+import matplotlib.pyplot as plt
+
+fig, axs = plt.subplots(5, 5)
+cnt = 0
+x = []
+y = []
+with open('index.html') as f:
+ for l in f.readlines():
+ if l.startswith('<div'):
+ s = l.split(':')
+ y.append(10 - int(float(s[3].split('px')[0]) / 50))
+ x.append(int(float(s[4].split('px')[0]) / 50))
+ cnt += 1
+ if cnt % 80 == 0:
+ axs[((cnt - 1) // 80) // 5, ((cnt - 1) // 80) % 5].scatter(x, y)
+ x = []
+ y = []
+plt.show()