Metadata-Version: 2.2
Name: python-google-drive-api
Version: 0.0.2
Summary: A python client library for Google Drive API
Author-email: tronikos <tronikos@gmail.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/tronikos/python-google-drive-api
Project-URL: Bug Tracker, https://github.com/tronikos/python-google-drive-api/issues
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.8
Requires-Dist: mashumaro>=3.12
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == "dev"

# 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

```sh
python3 -m venv .venv
source .venv/bin/activate
# for Windows CMD:
# .venv\Scripts\activate.bat
# for Windows PowerShell:
# .venv\Scripts\Activate.ps1

# Install dependencies
python -m pip install --upgrade pip
python -m pip install .

# Run pre-commit
python -m pip install pre-commit
pre-commit install
pre-commit run --all-files

# Alternative: run formatter, lint, and type checking
python -m pip install isort black flake8 ruff mypy
isort . ; black . ; flake8 . ; ruff check . --fix ; mypy --install-types .

# Run tests
python -m pip install pytest
pytest

# Build package
python -m pip install build
python -m build
```
