Define class to use system time class : Date Time « Development « Python

Home
Python
1.2D
2.Application
3.Buildin Function
4.Class
5.Data Structure
6.Data Type
7.Database
8.Development
9.Dictionary
10.Event
11.Exception
12.File
13.Function
14.GUI Pmw
15.GUI Tk
16.Language Basics
17.List
18.Math
19.Network
20.String
21.System
22.Thread
23.Tuple
24.Utility
25.XML
Python » Development » Date TimeScreenshots 
Define class to use system time class

import time

class now:
    def __init__(self):
        self.t = time.time()
        self.storetime()
    def storetime(self):
        self.year, self.month, self.day, self.hour, self.minute, self.second, \
         self.dow, self.doy, \
         self.dst = time.localtime(self.t)


class today(now):
    def __init__(self, y = 1970):
        now.now.__init__(self)
    def update(self,tt):
        if len(tt:
            raise TypeError
        if tt[01970 or tt[02038:
            raise OverflowError
        self.t = time.mktime(tt)
        self(self.t)

if __name__ == "__main__":
     n = today()
     print "The year is", n.year
     print n
     x = today()
     s = 'x'
     print s
     tt = (1999,7,16,12,59,59,0,0,-1)
     x.update(tt)
     print x



           
       
Related examples in the same category
1.Use time structureUse time structure
2.Dates are easily constructed and formattedDates are easily constructed and formatted
3.Dates support calendar arithmeticDates support calendar arithmetic
4.Print out a date, given year, month, and day as numbersPrint out a date, given year, month, and day as numbers
5.Define your own class to store time and date
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.