I developed a Python app to access GDrive, now I want to be notified in case any file is changed on gdrive. Specifically I'm interested in move / rename, remove, download and upload events. I see Google provide 2 tools:
push notifications, but it looks like this is limited to notify changes for a specific file or dir, as outlined here.
REST changes API, but AFAIU I am supposed to poll the google server every X seconds.
None of this is optimal for me, as I need global notifications about all filesystem-related events occurring on gdrive. Are there alternatives? I know DropBox supports this.