vladikk / JSON2CSV

Utility to convert json files to csv
Other
38 stars 23 forks source link

Error #6

Closed blanskiy closed 7 years ago

blanskiy commented 7 years ago

Привет Владик, взял ваш json2csv file и пытался работать с ним, но выходит error: decoder.py line 342 in decode raise JSONDecodeError("extra data",s , end) json.decoder.JSONDecoderError:Extra data: line 2 column 1 (char 1070) Вы можете помочь? Борис. Email blanskiy@yahoo.com

vladikk commented 7 years ago

Странно. Какая у вас версия питона? Вы уверены, что json валиден?

On Mon, Mar 27, 2017 at 6:18 PM, blanskiy notifications@github.com wrote:

Привет Владик, взял ваш json2csv file и пытался работать с ним, но выходит error: decoder.py line 342 in decode raise JSONDecodeError("extra data",s , end) json.decoder.JSONDecoderError:Extra data: line 2 column 1 (char 1070) Вы можете помочь? Борис. Email blanskiy@yahoo.com

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/vladikk/JSON2CSV/issues/6, or mute the thread https://github.com/notifications/unsubscribe-auth/ABtK_2WZSR_DmDQURCj6nMrkItzaL51Nks5rp9NBgaJpZM4MqarT .

blanskiy commented 7 years ago

Спасибо за быстрый ответ, у меня 3.6 версия, кажется в самом Json есть extra space и это ведёт к ошибке. Могу дать json file воспроизвести ошибку.

blanskiy commented 7 years ago

Проверил json на https://Jason-cvs.com , конвертирует без ошибок...

vladikk commented 7 years ago

В этом и дело. Скрипт очень старый, писался под питон 2.7. Попробуйте запустить на 2.7. Если все равно не будет работать, пришлите файл, попробую посмотреть.

Надо будет как нибудь переписать для третьего питона.

On Mar 27, 2017, at 20:10, blanskiy notifications@github.com wrote:

Спасибо за быстрый ответ, у меня 3.6 версия, кажется в самом Json есть extra space и это ведёт к ошибке. Могу дать json file воспроизвести ошибку.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

blanskiy commented 7 years ago

Кажется там всего 2 исправления. 1. Убрать Unicode он в 3 версии входит в str

  1. Эта ошибка кот я не смог пройти, начинающий в питоне, возможны для вас это можно починить быстро, кажется это связано с extra space. Буду благодарен за помощь.
blanskiy commented 7 years ago

Задача над кот работаю: создать pipeline aws сонвертирующая json log files into cvs and load it to mysql. Споткнулся на сонвертации и нашёл вашу программу.

vladikk commented 7 years ago

Там с поддержкой третьего питона немного сложнее, уже как-то пытался доработать, но там разница в работе с массивами. Можно посмотреть пример вашего json файла? Попробую еще раз.

On Mon, Mar 27, 2017 at 11:02 PM, blanskiy notifications@github.com wrote:

Задача над кот работаю: создать pipeline aws сонвертирующая json log files into cvs and load it to mysql. Споткнулся на сонвертации и нашёл вашу программу.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/vladikk/JSON2CSV/issues/6#issuecomment-289568543, or mute the thread https://github.com/notifications/unsubscribe-auth/ABtK_7_Enu46ADf3olXEQWcvukAG3mnQks5rqBXPgaJpZM4MqarT .

blanskiy commented 7 years ago

Can I have your email address? will send you from my private email.

blanskiy commented 7 years ago

sorry, don't have russian script at work

vladikk commented 7 years ago

Sure - vladik@khononov.com

Sent from my iPhone

On Mar 28, 2017, at 20:13, blanskiy notifications@github.com wrote:

Can I have your email address? will send you from my private email.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

blanskiy commented 7 years ago

thank you, will send shortly

blanskiy commented 7 years ago

just sent, thank you for help, appreciate greatly.

vladikk commented 7 years ago

The project was ported to python3