Metadata-Version: 2.1
Name: google_photos_library_api
Version: 0.0.1
Summary: A python client library for Google Photos Library API
Home-page: https://github.com/allenporter/python-google-photos-library-api
Author: Allen Porter
Author-email: allen.porter@gmail.com
License: Apache-2.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp>=3.7.3
Requires-Dist: google-api-python-client>=2.71.0
Requires-Dist: google-auth>=1.22.0
Requires-Dist: mashumaro>=3.12

A python client library for Google Photos Library API. This is a thin wrapper
around the API used for a very lightweight abstraction.

## Development

Set up pre-requisites:

```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ pip3 install -r requirements_dev.txt
```

Run tests and view coverage:
```bash
$ py.test --cov-report=term-missing --cov=google_photos_library_api
```
