43 lines
895 B
Python
43 lines
895 B
Python
"""MIL SDK 核心模块
|
|
|
|
提供 MIL 仿真数据读取功能
|
|
|
|
使用示例:
|
|
from src.core import read_excel_data
|
|
|
|
result = read_excel_data("simulation.xlsx")
|
|
"""
|
|
|
|
from .base import DataLog, SignalData, ExcelDataResult,Config
|
|
from .mil_read_data_excel import read_excel_data, ExcelReaderConfig
|
|
from .mil_read_case_excel import read_excel_case
|
|
from .mil_create_data_excel import create_excel_case
|
|
from .mil_update_excel import update_case_excel
|
|
|
|
from .exceptions import (
|
|
MILSDKError,
|
|
ExcelReadError,
|
|
ExcelFormatError,
|
|
CaseDataError,
|
|
ExcelWriteError,
|
|
)
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
"DataLog",
|
|
"SignalData",
|
|
"ExcelDataResult",
|
|
"ExcelReaderConfig",
|
|
"read_excel_data",
|
|
"read_excel_case",
|
|
"create_excel_case",
|
|
"update_case_excel",
|
|
"MILSDKError",
|
|
"ExcelReadError",
|
|
"ExcelFormatError",
|
|
"CaseDataError",
|
|
"ExcelWriteError",
|
|
"Config"
|
|
] |