Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions classroom/quickstart/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
Creates a Classroom API service object and prints the names of the first
10 courses the user has access to.
"""
# [START classroom_quickstart]
from __future__ import print_function
from apiclient.discovery import build
from httplib2 import Http
Expand All @@ -42,3 +43,4 @@
print('Courses:')
for course in courses:
print(course['name'])
# [END classroom_quickstart]