Skip to content

Commit c69dc30

Browse files
chore: use gapic-generator-python 0.51.2 (#248)
- [ ] 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 00edda3 commit c69dc30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+30316
-0
lines changed

owl-bot-staging/v1/.coveragerc

+17
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/pubsublite/__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/v1/MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
recursive-include google/cloud/pubsublite *.py
2+
recursive-include google/cloud/pubsublite_v1 *.py

owl-bot-staging/v1/README.rst

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
Python Client for Google Cloud Pubsublite 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 Pubsublite 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)