import sys,os
import datetime



rok=2025
mesic=12
den=11
hodina=0
minuta=0
dt=datetime.datetime(rok, mesic, den, hodina, minuta)
for ind in range(122):
    path=os.path.abspath(r"C:\Users\aero\Python\Riometer\rioplot_win.py")
    path='python '+path+' '+str(dt.year) +' '+str(dt.month)+' '+str(dt.day)+' -87 -86'
    print(path)
    os.system(path)
    dt=dt+datetime.timedelta(days=1)
