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
I am getting a JSON decode error:
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
The top of my CSV file looks like following:
"date","temperature" "1981-01-01",20.7 "1981-01-02",17.9 "1981-01-03",18.8
I am trying to run your script using the following command:
python csv_to_elastic.py --elastic-address 'localhost:9200' --csv-file daily-minimum-temperatures-in-me.csv --elastic-index 'temperatures' --datetime-field=date --json-struct '{ "date" : "%date%", "temperature" : "%temperature%" }' --delimiter ','
What could be a reason for such issue and how can I solve it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am getting a JSON decode error:
The top of my CSV file looks like following:
I am trying to run your script using the following command:
What could be a reason for such issue and how can I solve it?
The text was updated successfully, but these errors were encountered: