2 Star 0 Fork 1

yeluo/huawei-iotda-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
util.py 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
yeluo 提交于 2021-09-15 11:21 . Initial commit
import logging
logger = logging.getLogger()
def init_logger():
level = logging.INFO
logger.setLevel(level)
formatter = logging.Formatter('%(asctime)s | %(levelname)s | %(funcName)s | %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
console_handler = logging.StreamHandler()
console_handler.setLevel(level)
console_handler.setFormatter(formatter)
logger.addHandler(console_handler)
def return_none_if_empty(s):
if not s:
return None
return s
def get_str_from_cell(sheet, row_num, col_num):
raw_value = sheet.cell(row_num, col_num).value
if isinstance(raw_value, float):
raw_value = int(raw_value)
return return_none_if_empty(str(raw_value).strip())
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qinghanfun/huawei-iotda-tools.git
[email protected]:qinghanfun/huawei-iotda-tools.git
qinghanfun
huawei-iotda-tools
huawei-iotda-tools
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385