Turn Google Sheets into Your Own Database with Python

Поділитися
Вставка
  • Опубліковано 1 лют 2025

КОМЕНТАРІ • 14

  • @johnzgallerie2827
    @johnzgallerie2827 3 місяці тому

    What an excellent tutorial this is, thanks!

  • @hartyagi
    @hartyagi 2 роки тому +6

    Good video, would appreciate more if we can get a little more background on the options we are selected so that we can choose the right one that suits our project

    • @ThePyCoach
      @ThePyCoach  2 роки тому

      I’ll keep this in mind for future videos

  • @GarudAITech
    @GarudAITech Рік тому +1

    I am having error message "RefreshError: ('No access token in response.', {'id_token': ... " when I am trying to create my first google sheet as per your steps, can you suggest resource to go and solve this?

  • @swaytornado8327
    @swaytornado8327 Рік тому

    how to rewrite the data? because, after the first creation of a table and writing data, the table is closed, and it can no longer be connected to it again. is there such a video?

  • @radekmojzis9829
    @radekmojzis9829 2 роки тому

    Very nice. Thank You.

  • @youssefsedkey7616
    @youssefsedkey7616 2 роки тому

    Thank you very very very Much.

  • @antonkuznetsov1348
    @antonkuznetsov1348 2 роки тому +1

    Было очень полезно!
    Спасибо!

  • @ShemaGoodness
    @ShemaGoodness 2 роки тому

    What program are you using for the Jason files?

    • @ThePyCoach
      @ThePyCoach  2 роки тому

      To read the JSON file I use the same IDE I use to write code in Python: Pycharm

  • @phoneus1phoneus134
    @phoneus1phoneus134 2 роки тому

    Hello Frank
    It is safe when you store your json in code and in your file. Is safe to share the applicatin (exe) with end users?
    If not what is the safe way to do that?

    • @h0licede
      @h0licede Рік тому

      i was thinking about this too. i tried using github secrets nut seems doesnt work on me

    • @rclewis01
      @rclewis01 5 днів тому

      I could be wrong, but I was thinking that this would be for you only, if you wanted to deploy to your server running python. You could have a front end that many people use, but it still talks to the Python backend that you control and only you have access to. So, the secret stuff is under your control.
      If you want to share the whole application, front end and the back end, then you would have to remove the secret stuff and show the user a tutorial on how to get their own API access and create their own json file on their server.

  • @viktoriyakazakova5298
    @viktoriyakazakova5298 2 роки тому

    pycharm throws an error with this code, as the 'df.values.tolist()' should be also a two-dimensional list. it should be [df.values.tolist()]