Source code :: homepage

[Return]
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
import os

try:
    os.system('rm index.html')
except:
    pass

index = open('index.html','a+')
index.write('<html><head><title>AXUV1</title><style></style><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style></style><script type="text/x-mathjax-config">MathJax.Hub.Config({tex2jax: {inlineMath: [[\'$\',\'$\'], [\'\\(\',\'\\)\']]}})</script><script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></head><body>')
index.write('<h1> AXUV1 diode signal </h1>')
index.write('</ul>')
index.write('<h2>Bez vyhlazení</h2>')
index.write('<img src="PLOTS/AXUV1.png">')

index.write("<h2> Median fit [3,333] - srovnání se snímkem z rychlé kamery - jižní port </h2>")
index.write('<img src="PLOTS/AXUV1_medfilt-bicube_interp.png">')
index.write('</body></html>')
index.close()

Navigation