Alcidauk / CineLog

A fork of KinoLog Android app with some extra functionnalities
GNU General Public License v3.0
47 stars 15 forks source link

Suggestion: export to json #7

Open paper42 opened 5 years ago

paper42 commented 5 years ago

Json is now widely used and it is very readable, much more than csv. I am not sure if in Java, but in most programming languages support for this is built in the default library. For example in Python you call json.dumps(data) and it returns string formated as json.

Alcidauk commented 5 years ago

Hi,

thanks for your suggestion.

The reason why I choosed CSV is that for most of "common" users, CSV can be edited in a spreadsheet. CSV import/export has two goals for me: have some saves of the db, and be able to import a lot of reviews when using the app for the first time.

Json is also widely used, but only by developers. But I agree with you, it can be in a lot of cases more practical to have json saves. If I find a little time for this, maybe I'll implement Json as a second import/export format.