debugtalk.py 928 字节
import random
import string
import time,datetime
from helpfunc.login_func import *
from helpfunc.pg_db_func import *
from helpfunc.db_func import *
from helpfunc.header_func import *
from random import randint

def sleep(n_secs):
    time.sleep(n_secs)

def convert_to_string(value):
    return str(value)

def get_nowtime():
    return time.strftime("%Y%m%d%H%M%S",time.localtime(time.time()))

def get_today():
    now_today = datetime.datetime.now()
    str_time = now_today.strftime("%Y-%m-%d")
    return str_time
def get_second():
    curr_time = datetime.datetime.now()
    return  curr_time.second

def create_channel(num):
    channel = []
    for i in range(num+1):
        channel.append(i)
    return channel

def create_phone_number(num):
    phone_number = []
    for i in range(num):
        number = random.randint(0,9)
        phone_number.append('1%d%d%08d'%(number,number+1,number+2))
    return phone_number