python-google-drive-api
A python client library for Google Drive API.
Background
This is a thin wrapper around the API used for a very lightweight abstraction.
The primary use case is for Home Assistant.
Based on https://github.com/allenporter/python-google-photos-library-api
Development environment
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install .
python -m pip install pre-commit
pre-commit install
pre-commit run --all-files
python -m pip install isort black flake8 ruff mypy
isort . ; black . ; flake8 . ; ruff check . --fix ; mypy --install-types .
python -m pip install pytest
pytest
python -m pip install build
python -m build