Esempio n. 1
0
def get_calendar(promo, group):
    output = '{}/{}.ics'.format(CALDIR, group)
    cal = chronos.chronos(promo, group, NUMWEEKS)
    print("ecriture: " + output)
    with open('{}'.format(output), 'w') as out:
        out.writelines(cal)
Esempio n. 2
0
def get_calendar(promo, group):
    output = '{}/{}.ics'.format(CALDIR, group)
    cal = chronos.chronos(promo, group)
    with open('{}'.format(output), 'w') as out:
        out.writelines(cal)
Esempio n. 3
0
def get_calendar(promo, group):
    output = '{}/{}.ics'.format(CALDIR, group)
    cal = chronos.chronos(promo, group)
    with open('{}'.format(output), 'w') as out:
        out.writelines(cal)
Esempio n. 4
0
def get_calendar(promo, group):
    output = '{}/{}.ics'.format(CALDIR, group)
    cal = chronos.chronos(promo, group, NUMWEEKS)
    print("ecriture: " + output)
    with open('{}'.format(output), 'w') as out:
        out.writelines(cal)