python UNIX_TIMESTAMP時間處理

來源:互聯網
上載者:User

from datetime import datetime
import time
int(time.mktime(rm.start_time.timetuple()))
 datetime.fromtimestamp(time.time())
rf.start_time + timedelta(0, math.ceil(diff.total_seconds()/(3600*rf.period))*3600*rf.period)

擷取按月或者小時位移時間

def getlastday(datetimeobj):
    year= datetimeobj.year
    month = datetimeobj.month + 1
    if month>12:
        year = year + 1
        month=1        
    return datetime(year, month, 1) - timedelta(1)

def getSendTime(period, start_time):
    datenow = datetime.now()
    nextTime = preTime = start_time
    if period > 0 and period < 1000:         
        diff = datetime.now() - start_time
        nextTime = start_time + timedelta(0, math.ceil(diff.total_seconds()/(3600*period))*3600*period)
        preTime = start_time + timedelta(0, math.floor(diff.total_seconds()/(3600*period))*3600*period)
    if period == 1001:
        if datenow.day>start_time.day:            
            preTime = datetime(datenow.year, datenow.month, start_time.day)
            nextTime = getlastday(getlastday(datenow)+timedelta(1))
            if nextTime.day > start_time.day:
                nextTime = datetime(nextTime.year, nextTime.month, start_time.day)
        else:
            preTime = getlastday(datetime(datenow.year, datenow.month, 1) - timedelta(1))
            if preTime.day > start_time.day:
                preTime = datetime(preTime.year, preTime.month, start_time.day)
            nextTime = getlastday(datenow)
            if nextTime.day > start_time.day:
                nextTime = datetime(nextTime.year, nextTime.month, start_time.day)
    
    return  preTime, nextTime

排序

 reportMetaPeriodInfo.sort(lambda p1, p2:cmp(p1['k'], p2['k']))

擷取ip

import socket

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
        s.connect(('8.8.8.8', 0))
        localIP=s.getsockname()[0]

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.