python trick

1. 时间日期处理


返回自1970年1月1日(Unix epoch)起的秒数

def convert_date_to_seconds(date):
    #date example: 16/Nov/2010:16:12:29
    dt = time.strptime(date, "%d/%b/%Y:%H:%M:%S")
    #dt is a struct_time
    return time.mktime(dt)


2. urllib

quote_plus() 给查询关键字添加+

eg: 
urllib.quote_plus("a b c")     

=> a+b+c






你可能感兴趣的:(c,Date,python,unix,struct,2010)