You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
360 B
23 lines
360 B
13 years ago
|
# $Id: datetime.py,v 1.1 2011-09-01 15:34:03 wirawan Exp $
|
||
|
#
|
||
|
# wpylib.datetime
|
||
|
# Created: 20110901
|
||
|
# Wirawan Purwanto
|
||
|
#
|
||
|
|
||
|
"""
|
||
|
wpylib.datetime
|
||
|
|
||
|
Frequently used date/time related tools.
|
||
|
Do not confuse this with python's core datetime module, which
|
||
|
is not being replaced by this module!
|
||
|
"""
|
||
|
|
||
|
import sys
|
||
|
import time
|
||
|
|
||
|
|
||
|
def date8():
|
||
|
return time.strftime("%Y%m%d")
|
||
|
|