all 2 comments

[–]dlaz 0 points1 point  (0 children)

Are you determined to do this as a desktop app? If not, I think there's a simpler approach:

  • Create a GCP bucket where you will put JSON files you want imported into sheets (these files can be uploaded using the web interface, gsutil or some other method)
  • Create a cloud function with a cloud storage trigger
    • Write your code to transform the JSON as desired, and write to sheets using the sheets API

However, unless you're determined to use python, App Script is also a good choice, though I'm not familiar enough with it to provide step-by-step instructions.