251030
This commit is contained in:
parent
c46f53e2f9
commit
e8ea3c8c62
|
|
@ -1,16 +1,11 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
'''
|
"""
|
||||||
|
|
||||||
脚本说明:
|
脚本说明:
|
||||||
|
|
||||||
根据行政区划数据就待转化数据集进行转化
|
根据行政区划数据就待转化数据集进行转化
|
||||||
|
|
||||||
备注:
|
备注:
|
||||||
|
|
||||||
行政区划数据集来源于 https://lbsyun.baidu.com/faq/api?title=webapi/download
|
行政区划数据集来源于 https://lbsyun.baidu.com/faq/api?title=webapi/download
|
||||||
|
"""
|
||||||
'''
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
|
@ -28,7 +23,7 @@ import sys
|
||||||
|
|
||||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
|
||||||
|
|
||||||
from utils.pandas_extension import SaveAsExcel
|
from utils.pandas_extension import save_as_workbook
|
||||||
|
|
||||||
print('1、读取Excel并创建数据集...', end = '')
|
print('1、读取Excel并创建数据集...', end = '')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue