Colab menghapus drive tempat sampah daur ulang

# credit to Stack Overflow user in the source link

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
from google.colab import auth
from oauth2client.client import GoogleCredentials

auth.authenticate_user()
gauth = GoogleAuth()
gauth.credentials = GoogleCredentials.get_application_default()
my_drive = GoogleDrive(gauth)

# all files
for a_file in my_drive.ListFile({'q': "trashed = true"}).GetList():
    print(f'the file "{a_file['title']}", is about to get deleted permanently.')
    a_file.Delete()

# specific file
for a_file in my_drive.ListFile({'q': "title = 'weights-improvement-01-10.5336.hdf5' and trashed=true"}).GetList():
    print(f'the file "{a_file['title']}", is about to get deleted permanently.')    
    a_file.Delete()
wolf-like_hunter