debugtalk.py 892 字节
import json
import time
# from helpfunc.db_func import *
from helpfunc.header_func import *
from helpfunc.login_func import *
from helpfunc.m_func import *
from helpfunc.pg_db_func import *
# from helpfunc.time_func import *

import time,datetime,re

from urllib.parse import *


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

def convert_to_string(value):
    return str(value)

def convert_to_number(value):
    return int(value)

# def get_base_url(env_type="test"):
#     """
#     根据配置选择运行环境
#     :param env_type:
#     :return:
#     """
#     if env_type == "test":
#         return "https://ability-test.fjmaimaimai.com"
#     else:
#         return "https://ability-prod.fjmaimaimai.com"

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


def get_second():
    curr_time = datetime.datetime.now()
    return  curr_time.second