A command line tool for interacting with Google Drive.
https://asdf-vm.com/guide/getting-started.html#getting-started
asdf plugin-add python
install poetry asdf plugin
asdf plugin-add poetry https://github.com/asdf-community/asdf-poetry.git
asdf install
poetry install
poetry shell
NOTE: you need the credentials.json file before running commands
python gdrive.py list-files
# define fields
python gdrive.py list-files --fields='files(id,name)' --page-size=10
# with query
python gdrive.py list-files --q "name CONTAINS 'Ruvixx'"
python gdrive.py list-files --q "name = 'Ruvixx File'"