iterative / PyDrive2

Google Drive API Python wrapper library. Maintained fork of PyDrive.
https://docs.iterative.ai/PyDrive2
Other
565 stars 70 forks source link

SaveCredentialsFile() does not store anything #343

Open db0 opened 4 months ago

db0 commented 4 months ago

Calling the SaveCredentialsFile() method with a filename does nothing

I followed to calls inside until oauth2client.client.Storage.locked_put at which point I see:

    def locked_put(self, credentials):
        """Write a credential.

        The Storage lock must be held when this is called.

        Args:
            credentials: Credentials, the credentials to store.
        """
        raise NotImplementedError

I also see that oauth2client is deprecated for a while now. Is this a functionality that was removed or am I doing something wrong?