Metadata-Version: 2.1
Name: gcp-microservice-utils
Version: 0.2.2
Summary: A Python library providing utilities to simplify the integration of various GCP Cloud services like, Cloud Logging, Cloud Trace, etc.
License: Apache 2.0
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Flask >=3.0.0
Requires-Dist: google-cloud-logging ==3.11.2
Requires-Dist: google-cloud-trace ==1.13.5

A Python library providing utilities to simplify the integration of various GCP Cloud services like Cloud Logging, Cloud Trace, and authentication with API Gateway into your microservice applications.

This library aims to reduce the boilerplate code required for instrumenting Python microservices with essential GCP services. It provides convenient wrappers and helper functions for:

- Cloud Logging: Easily log structured data with severity levels and custom attributes.
- Cloud Trace: Automatically trace requests across your microservices, enabling distributed tracing and performance analysis.   
- Authentication: Includes Flask middleware to seamlessly process authentication results from GCP API Gateway, simplifying security integration.

## Installation
```sh
pip install gcp-microservice-utils
```
