Alarmをつくろうと。

#!/usr/bin/python
# -*- coding: utf-8 -*-
__author__="nonakakouichirou"
__date__ ="$2010/12/06 11:15:59$"

import time
t = time.ctime();
print t;
while t != "Mon Dec  6 11:33:26 2010":
    deff = t;
    t = time.ctime();
    if t != deff:
        print "Content-Type: text/plain"
        print t;
print "now";

だめだな。CGIがサーバ側でループして、ブラウザにHTMLが送られてこない感じか。