Skip to content

Instantly share code, notes, and snippets.

View Kkuntal990's full-sized avatar
🎯
Focusing

Kuntal Kokate Kkuntal990

🎯
Focusing
View GitHub Profile
@xflr6
xflr6 / walk_gdrive.py
Last active October 11, 2025 16:03
Recursively traverse the directory tree of a Google Drive folder as variation of os.walk()
"""os.walk() variation with Google Drive API v3."""
from collections.abc import Iterator, Sequence
import os
import pathlib
from typing import TypedDict
# $ pip install google-api-python-client google-auth-oauthlib
from apiclient import discovery
from google.oauth2 import credentials