diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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() |