bi_utils/xl/README.md
2024-12-26 11:54:32 +03:30

10 lines
177 B
Markdown

example usage :
``` python
file_path = "./1.xlsx"
sheet_name = "Sheet"
with XL(file_path) as excel_to_dict:
data = excel_to_dict.sheet_to_dict(sheet_name)
print(data)
```