Skip to content

googleapis/python-logging

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f4fb25a · Apr 22, 2025
Apr 10, 2025
Mar 10, 2025
May 22, 2022
Mar 4, 2025
Apr 22, 2025
Apr 22, 2025
Jul 9, 2024
Mar 26, 2025
Apr 21, 2025
Jan 24, 2023
Jul 9, 2024
Oct 3, 2023
Feb 9, 2021
Jul 9, 2024
Apr 22, 2025
Jan 24, 2024
Jul 9, 2024
Apr 22, 2025
Nov 19, 2020
Nov 20, 2024
Jan 12, 2021
Jul 9, 2024
Mar 11, 2025
May 3, 2021
Jan 27, 2022
Apr 20, 2021
Sep 7, 2022
Nov 20, 2024
Apr 10, 2025
Oct 31, 2017
Aug 6, 2024
Dec 14, 2022
Jan 14, 2025
Jul 17, 2023
Mar 26, 2025

Python Client for Cloud Logging

pypi versions

Cloud Logging API: Writes log entries and manages your Cloud Logging configuration.

Quick Start

In order to use this library, you first need to go through the following steps:

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Cloud Logging API.
  4. Setup Authentication.

For an interactive walkthrough on how to use this library in a python application, click the Guide Me button below:

guide

Installation

Install this library in a venv using pip. venv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With venv, it's possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Supported Python Versions

Python >= 3.7

Unsupported Python Versions

Python == 2.7. The last version of the library compatible with Python 2.7 is google-cloud-logging==1.15.1.
Python == 3.6. The last version of the library compatible with Python 3.6 is google-cloud-logging==3.1.2.

Mac/Linux

python -m venv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-logging

Windows

python -m venv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-logging

Next Steps