os_parse_time [function]
os_parse_time( int time = os_time() )
returns time split into parts, as dict
- the returned dict contains the following properties (all are integers):
- year (1900-????)
 - month (1-12)
 - day (1-31)
 - weekday (1-7)
 - yearday (1-366)
 - hours (0-23)
 - minutes (0-59)
 - seconds (0-61)
 
 
