#!/usr/bin/env python """ make_time.py simple script that returns and HTML page with the current time """ import datetime time_str = datetime.datetime.now().isoformat() html = """

The time is:

%s

"""% time_str print html