根据当前时间戳获得整小时时间戳
python2整除用/ python3整除用// 以下代码适用于python2如果用python3的话除号用//代替
unit = 3600
start_time = int(time.time())/3600 * 3600
根据当前时间戳获得整天时间戳
unit = 3600*24
start_time = int(time.time()) / unit * unit - 8 * 3600
由于时间戳起始为1970 年 1 月 1 日(08:00:00)所以这里需要减8小时才时0点的时间戳