目录
代码片段
ExcelReader.py
import openpyxl
class ExcelReader:
# constructor
def __init__(self,
file_path=True,
sheet_name=True,
):
self.file_path = file_path
self.sheet_name = sheet_name
self.wb = self.load_excel(file_path)
self.ws = self.wb[sheet_name]
@staticmethod
def load_excel(excel_url):
return openpyxl.load_work


1万+

被折叠的 条评论
为什么被折叠?



