19 lines
253 B
Markdown
19 lines
253 B
Markdown
installation :
|
|
|
|
```bash
|
|
pip install git+{reponame}
|
|
```
|
|
|
|
|
|
example usage :
|
|
|
|
|
|
``` python
|
|
from xl import XL
|
|
|
|
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)
|
|
``` |