1. 程式人生 > >md5加密以及獲取時間戳

md5加密以及獲取時間戳

匯入的包

from urllib import parse,request
from flask import Flask
import hashlib
import pymysql
import json
import time

定義md5加密規則

def encrypt_md5(str=''):
    md = hashlib.md5()  # 建立md5物件
    md.update(str.encode(encoding='utf-8'))  # 這裡必須用encode()函式對字串進行編碼,不然會報 TypeError: Unicode-objects must be encoded before hashing
    return
md.hexdigest() # 加密 password = encrypt_md5(password1)

獲取時間戳(14位)

def time_now():
    now = int(round(time.time()*1000))
    now02 = time.strftime('%Y%m%d%H%M%S',time.localtime(now/1000))
    return now02

獲取時間戳(10)位

dt = '2018-01-01 10:40:30'
ts = int(time.mktime(time.strptime(dt, "%Y-%m-%d %H:%M:%S")))
print (ts)

獲取時間戳(13)位

millis = int(round(time.time() * 1000))

僅作筆記.