acodingcat

Results 2 comments of acodingcat

I encountered the same problem before convert, use `pandas` read excel ``` import pandas as pd file_path = "C:\\Users\\acodingcat\\Desktop\\test.xlsx" df = pd.read_excel(file_path) ``` current dataframe ![image](https://github.com/dilshod/xlsx2csv/assets/53414014/b78023d6-9140-4ac2-8457-9adade326407) after convert, use `xlsx2csv`...

Hi, python-pygraphviz `1.12` with python `3.11` I'm using pygraphviz to draw directed graph,obtain layout information. It has encountered a problem. ```python import networkx as nx import pandas as pd from...