1
- Python Client for Google Cloud Billing API
2
- =================================================
1
+ Python Client for Cloud Billing API
2
+ ===================================
3
+
4
+ |ga | |pypi | |versions |
5
+
6
+ `Cloud Billing API `_: Allows developers to manage billing for their Google Cloud Platform
7
+ projects programmatically.
8
+
9
+ - `Client Library Documentation `_
10
+ - `Product Documentation `_
11
+
12
+ .. |ga | image :: https://img.shields.io/badge/support-GA-gold.svg
13
+ :target: https://github.com/googleapis/google-cloud-python/blob/master/README.rst#general-availability
14
+ .. |pypi | image :: https://img.shields.io/pypi/v/google-cloud-billing.svg
15
+ :target: https://pypi.org/project/google-cloud-billing/
16
+ .. |versions | image :: https://img.shields.io/pypi/pyversions/google-cloud-billing.svg
17
+ :target: https://pypi.org/project/google-cloud-billing/
18
+ .. _Cloud Billing API : https://cloud.google.com/billing
19
+ .. _Client Library Documentation : https://googleapis.dev/python/cloudbilling/latest
20
+ .. _Product Documentation : https://cloud.google.com/billing
3
21
4
22
Quick Start
5
23
-----------
@@ -8,12 +26,13 @@ In order to use this library, you first need to go through the following steps:
8
26
9
27
1. `Select or create a Cloud Platform project. `_
10
28
2. `Enable billing for your project. `_
11
- 3. Enable the Google Cloud Billing API.
29
+ 3. ` Enable the Cloud Billing API. `_
12
30
4. `Setup Authentication. `_
13
31
14
32
.. _Select or create a Cloud Platform project. : https://console.cloud.google.com/project
15
33
.. _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
34
+ .. _Enable the Cloud Billing API. : https://cloud.google.com/billing
35
+ .. _Setup Authentication. : https://googleapis.github.io/google-cloud-python/latest/core/auth.html
17
36
18
37
Installation
19
38
~~~~~~~~~~~~
@@ -34,16 +53,31 @@ Mac/Linux
34
53
35
54
.. code-block :: console
36
55
37
- python3 -m venv <your-env>
56
+ pip install virtualenv
57
+ virtualenv <your-env>
38
58
source <your-env>/bin/activate
39
- <your-env>/bin/pip install /path/to/library
59
+ <your-env>/bin/pip install google-cloud-billing
40
60
41
61
42
62
Windows
43
63
^^^^^^^
44
64
45
65
.. code-block :: console
46
66
47
- python3 -m venv <your-env>
67
+ pip install virtualenv
68
+ virtualenv <your-env>
48
69
<your-env>\Scripts\activate
49
- <your-env>\Scripts\pip.exe install \path\to\library
70
+ <your-env>\Scripts\pip.exe install google-cloud-billing
71
+
72
+ Next Steps
73
+ ~~~~~~~~~~
74
+
75
+ - Read the `Client Library Documentation `_ for Cloud Billing API
76
+ API to see other available methods on the client.
77
+ - Read the `Cloud Billing API Product documentation `_ to learn
78
+ more about the product and see How-to Guides.
79
+ - View this `README `_ to see the full list of Cloud
80
+ APIs that we cover.
81
+
82
+ .. _Cloud Billing API Product documentation : https://cloud.google.com/billing
83
+ .. _README : https://github.com/googleapis/google-cloud-python/blob/master/README.rst
0 commit comments