We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While it does convert excel to json from command line, if used as a module it does not convert anything.
This is my code:
import excel2json
file = "path_to_file" data = excel2json.convert_from_file(file) print(data)
None
The text was updated successfully, but these errors were encountered:
if used as a module it does not convert anything
The convert_from_file(filepath, location=None) and convert_from_url(url, location=None) do not return anything.
convert_from_file(filepath, location=None)
convert_from_url(url, location=None)
The JSON is saved into files within the directory of your file (or current working directory) or as specified otherwise from the location parameter.
location
Sorry, something went wrong.
No branches or pull requests
While it does convert excel to json from command line, if used as a module it does not convert anything.
This is my code:
import excel2json
file = "path_to_file"
data = excel2json.convert_from_file(file)
print(data)
The text was updated successfully, but these errors were encountered: