Metadata-Version: 2.1
Name: google_photos_library_api
Version: 0.8.0
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. 

The Google Photos Library API allows your app to read, write, and share photos
and videos in Google Photos. See [Google Photos APIs](https://developers.google.com/photos)
for more details on how to integrate Google Photos with your application.

## Background

This is a thin wrapper around the API used for a very lightweight abstraction. The
primary use case is for Home Assistant though can be used for other usages. This
is redundant with Google Photos APIs however they are very generic. This library
provides a simpler API that is easier to read, supports `asyncio`, and also
includes content uploading APIs which don't have a standard client library.

## Usage

See the [API Documentation](https://allenporter.github.io/python-google-photos-library-api/) for more details.

## 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
```
