Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 23f9e1f

Browse filesBrowse files
chore: use gapic-generator-python 0.51.2 (#404)
- [ ] Regenerate this pull request now. fix: add 'dict' annotation type to 'request' Committer: @busunkim96 PiperOrigin-RevId: 398509016 Source-Link: googleapis/googleapis@b224dfa Source-Link: googleapis/googleapis-gen@63a1db7 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNjNhMWRiN2EzOGQ3NGI5NjM5NTkyZjUyMWVkMWRhYWY3Mjk5YWQ5YSJ9
1 parent fccd4a5 commit 23f9e1f
Copy full SHA for 23f9e1f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

56 files changed

+28740
-0
lines changed

‎owl-bot-staging/v2/.coveragerc

Copy file name to clipboard
+17Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[run]
2+
branch = True
3+
4+
[report]
5+
show_missing = True
6+
omit =
7+
google/cloud/logging/__init__.py
8+
exclude_lines =
9+
# Re-enable the standard pragma
10+
pragma: NO COVER
11+
# Ignore debug-only repr
12+
def __repr__
13+
# Ignore pkg_resources exceptions.
14+
# This is added at the module level as a safeguard for if someone
15+
# generates the code and tries to run it without pip installing. This
16+
# makes it virtually impossible to test properly.
17+
except pkg_resources.DistributionNotFound

‎owl-bot-staging/v2/MANIFEST.in

Copy file name to clipboard
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
recursive-include google/cloud/logging *.py
2+
recursive-include google/cloud/logging_v2 *.py

‎owl-bot-staging/v2/README.rst

Copy file name to clipboard
+49Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Python Client for Google Cloud Logging API
2+
=================================================
3+
4+
Quick Start
5+
-----------
6+
7+
In order to use this library, you first need to go through the following steps:
8+
9+
1. `Select or create a Cloud Platform project.`_
10+
2. `Enable billing for your project.`_
11+
3. Enable the Google Cloud Logging API.
12+
4. `Setup Authentication.`_
13+
14+
.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
15+
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
16+
.. _Setup Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html
17+
18+
Installation
19+
~~~~~~~~~~~~
20+
21+
Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
22+
create isolated Python environments. The basic problem it addresses is one of
23+
dependencies and versions, and indirectly permissions.
24+
25+
With `virtualenv`_, it's possible to install this library without needing system
26+
install permissions, and without clashing with the installed system
27+
dependencies.
28+
29+
.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
30+
31+
32+
Mac/Linux
33+
^^^^^^^^^
34+
35+
.. code-block:: console
36+
37+
python3 -m venv <your-env>
38+
source <your-env>/bin/activate
39+
<your-env>/bin/pip install /path/to/library
40+
41+
42+
Windows
43+
^^^^^^^
44+
45+
.. code-block:: console
46+
47+
python3 -m venv <your-env>
48+
<your-env>\Scripts\activate
49+
<your-env>\Scripts\pip.exe install \path\to\library

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.