26 lines
346 B
Python
26 lines
346 B
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
|
|
"""
|
|
@author: CNWei
|
|
@Software: PyCharm
|
|
@contact: t6i888@163.com
|
|
@file: excel_handle
|
|
@date: 2025/3/30 15:09
|
|
@desc:
|
|
"""
|
|
from pathlib import Path
|
|
|
|
|
|
class ExcelHandler:
|
|
def __init__(self, path: Path) -> None:
|
|
self.path = path
|
|
|
|
|
|
def load(self):
|
|
pass
|
|
|
|
|
|
def save(self):
|
|
pass
|
|
|