Raphael Araújo
Raphael Araújo
coincidentally was made a fork about it these days. https://github.com/zenitraM/jQuery-webcam/commits/
Hi @jihh, I had the same problem here. The problem is the version 4 of Neo4j. If you use version 3.5 you don't get the problem.
I spent a lot of time to find out this problem was related to compatibility between version 9.6 and Neo4j 4. I thought about creating a PR to help other...
The version 4 of Neo4j maybe doesn't work. Maybe you need see this https://github.com/neo4jrb/activegraph/issues/1607
It seems related to the Unnamed columns. Try to use Panda library to read your file using this code: ```python import pandas as pd xlsx = pd.read_excel('file.xlsx', sheet_name=0) xlsx.to_csv('file.csv', index=False)...
I could simulate the same issue using this code: ```python import agate import agateexcel table = agate.Table.from_xlsx('file.xlsx', sheet=0) table.to_csv('file.csv') ``` The Panda library and Csvkit are using the Agate library.
@jpmckinney Sorry, I can not share my file. It comes from a customer. Using your commit, I got this error message: `ValueError: Row 1 has 15 values, but Table only...
@jpmckinney Sorry, I got confused. The `pandas` library uses `openpyxl`, and it uses the `agate`, as `csvkit`. I can not share the customer's file, and when I try to remove...
Using pandas: ``` import pandas as pd # Lendo o arquivo xlsx xlsx = pd.read_excel('test/fixtures/files/xlsx/sales_with_header_in_row_two_google.xlsx', sheet_name=0) # Escrevendo o conteúdo em um arquivo csv xlsx.to_csv('output_file.csv', index=False) ```` Result in `output_file.csv`:...
I am making progress: Using Pandas: ``` import pandas as pd xlsx = pd.read_excel('test/fixtures/files/xlsx/sales_with_header_in_row_two.xlsx', sheet_name=0, index_col=None, header=None) xlsx.to_csv('output_file.csv', index=False, header=None) # Results: Sales Period,May 2023,,,,,,,,,,,,, Title,Author,ASIN,Marketplace,Units Sold,Units Refunded,Net Units Sold,Royalty...