1Python Client for Google Cloud Appengine Logging
2=======================================================
3
4|ga| |pypi| |versions|
5
6This package contains generated Python types for ``google.appengine.logging.v1.request_log``.
7
8- `Client Library Documentation`_
9- `Product Documentation`_
10
11.. |ga| image:: https://img.shields.io/badge/support-ga-gold.svg
12   :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#ga-support
13.. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-appengine-logging.svg
14   :target: https://pypi.org/project/google-cloud-appengine-logging/
15.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-appengine-logging.svg
16   :target: https://pypi.org/project/google-cloud-appengine-logging/
17.. _Client Library Documentation: https://googleapis.dev/python/appenginelogging/latest
18.. _Product Documentation:  https://cloud.google.com/logging/docs/reference/v2/rpc/google.appengine.logging.v1
19
20
21Installation
22~~~~~~~~~~~~
23
24Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
25create isolated Python environments. The basic problem it addresses is one of
26dependencies and versions, and indirectly permissions.
27
28With `virtualenv`_, it's possible to install this library without needing system
29install permissions, and without clashing with the installed system
30dependencies.
31
32.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
33
34
35Mac/Linux
36^^^^^^^^^
37
38.. code-block:: console
39
40    python3 -m venv <your-env>
41    source <your-env>/bin/activate
42    <your-env>/bin/pip install google-cloud-appengine-logging
43
44
45Windows
46^^^^^^^
47
48.. code-block:: console
49
50    python3 -m venv <your-env>
51    <your-env>\Scripts\activate
52    <your-env>\Scripts\pip.exe install google-cloud-appengine-logging
53