We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4fa754 + 9d3adf4 commit 6ce7748Copy full SHA for 6ce7748
classroom/quickstart/quickstart.py
@@ -18,6 +18,7 @@
18
Creates a Classroom API service object and prints the names of the first
19
10 courses the user has access to.
20
"""
21
+# [START classroom_quickstart]
22
from __future__ import print_function
23
from apiclient.discovery import build
24
from httplib2 import Http
@@ -42,3 +43,4 @@
42
43
print('Courses:')
44
for course in courses:
45
print(course['name'])
46
+# [END classroom_quickstart]
0 commit comments