File: coordinate.py

package info (click to toggle)
python-googleapi 2.186.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 553,432 kB
  • sloc: python: 11,087; javascript: 249; sh: 114; makefile: 59
file content (123 lines) | stat: -rw-r--r-- 3,367 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#  Copyright 2014 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Simple command-line sample for Google Coordinate.

Pulls a list of jobs, creates a job and marks a job complete for a given
Coordinate team. Client IDs for installed applications are created in the
Google API Console. See the documentation for more information:

   https://developers.google.com/console/help/#WhatIsKey

Usage:
  $ python coordinate.py -t teamId

You can also get help on all the command-line flags the program understands
by running:

  $ python coordinate.py --help

To get detailed log output run:

  $ python coordinate.py -t teamId --logging_level=DEBUG
"""
from __future__ import print_function

__author__ = "zachn@google.com (Zach Newell)"

import argparse
import pprint
import sys

from oauth2client import client
from googleapiclient import sample_tools
from googleapiclient.discovery import build
from googleapiclient.discovery import http

# Declare command-line flags.
argparser = argparse.ArgumentParser(add_help=False)
argparser.add_argument("teamId", help="Coordinate Team ID")


def main(argv):
    # Authenticate and construct service.
    service, flags = sample_tools.init(
        argv,
        "coordinate",
        "v1",
        __doc__,
        __file__,
        parents=[argparser],
        scope="https://www.googleapis.com/auth/coordinate",
    )

    service = build("coordinate", "v1", http=http)

    try:
        # List all the jobs for a team
        jobs_result = service.jobs().list(teamId=flags.teamId).execute(http=http)

        print("List of Jobs:")
        pprint.pprint(jobs_result)

        # Multiline note
        note = """
    These are notes...
    on different lines
    """

        # Insert a job and store the results
        insert_result = (
            service.jobs()
            .insert(
                body="",
                title="Google Campus",
                teamId=flags.teamId,
                address="1600 Amphitheatre Parkway Mountain View, CA 94043",
                lat="37.422120",
                lng="122.084429",
                assignee=None,
                note=note,
            )
            .execute()
        )

        pprint.pprint(insert_result)

        # Close the job
        update_result = (
            service.jobs()
            .update(
                body="",
                teamId=flags.teamId,
                jobId=insert_result["id"],
                progress="COMPLETED",
            )
            .execute()
        )

        pprint.pprint(update_result)

    except client.AccessTokenRefreshError as e:
        print(
            "The credentials have been revoked or expired, please re-run"
            "the application to re-authorize"
        )


if __name__ == "__main__":
    main(sys.argv)