# _*_coding:utf-8_*_
"""
@author : Zhaoqing Liu
@email : Zhaoqing.Liu-1@student.uts.edu.au
"""
import os
import time
[docs]def get_timestamp_str():
return str(int(round(time.time() * 1000)))
[docs]def get_today_str():
return time.strftime("%Y-%m-%d", time.localtime(time.time()))
[docs]def get_now_str(tim_str):
return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(int(tim_str)/1000))
[docs]def get_cwd_as_prefix():
# !!! NB: This function must be tested in the main of a project.
# return os.path.abspath(os.path.dirname(__name__)) + "/"
# return os.path.abspath(os.path.dirname(__file__)) + "/"
return os.getcwd() + "/"