|
1 | 1 | from examples.settings import settings
|
2 | 2 | from office365.runtime.auth.authentication_context import AuthenticationContext
|
| 3 | +from office365.sharepoint.caml_query import CamlQuery |
3 | 4 | from office365.sharepoint.client_context import ClientContext
|
4 | 5 |
|
5 |
| - |
6 |
| -listTitle = "Documents" |
| 6 | +list_title = "Documents" |
| 7 | +view_title = "All Documents" |
7 | 8 |
|
8 | 9 |
|
9 | 10 | def print_list_views(ctx):
|
10 | 11 | """Read list view by title example"""
|
11 |
| - list_object = ctx.web.lists.get_by_title(listTitle) |
| 12 | + list_object = ctx.web.lists.get_by_title(list_title) |
12 | 13 | views = list_object.views
|
13 | 14 | ctx.load(views)
|
14 | 15 | ctx.execute_query()
|
15 | 16 | for view in views:
|
16 | 17 | # print "View title: {0}".format(view.Properties["Title"])
|
17 | 18 |
|
18 |
| - viewTitle = view.properties["Title"] |
19 |
| - curView = views.get_by_title(viewTitle) |
20 |
| - ctx.load(curView) |
| 19 | + cur_view_title = view.properties["Title"] |
| 20 | + cur_view = views.get_by_title(cur_view_title) |
| 21 | + ctx.load(cur_view) |
21 | 22 | ctx.execute_query()
|
22 |
| - print("View title: {0}".format(curView.properties["Title"])) |
| 23 | + print("View title: {0}".format(cur_view.properties["Title"])) |
| 24 | + |
| 25 | + |
| 26 | +def print_view_items(ctx): |
| 27 | + """Example demonstrates how to retrieve View items""" |
| 28 | + |
| 29 | + list_object = ctx.web.lists.get_by_title(list_title) |
| 30 | + # 1.get View query |
| 31 | + view = list_object.views.get_by_title(view_title) |
| 32 | + ctx.load(view, "ViewQuery") |
| 33 | + ctx.execute_query() |
| 34 | + |
| 35 | + # 2.get items for View query |
| 36 | + qry = CamlQuery() |
| 37 | + qry.ViewXml = "<View><Where>{0}</Where></View>".format(view.properties["ViewQuery"]) |
| 38 | + items = list_object.get_items(qry) |
| 39 | + ctx.load(items) |
| 40 | + ctx.execute_query() |
| 41 | + |
| 42 | + for item in items: |
| 43 | + print("Item title: {0}".format(item.properties["Title"])) |
23 | 44 |
|
24 | 45 |
|
25 | 46 | if __name__ == '__main__':
|
26 |
| - ctxAuth = AuthenticationContext(url=settings['url']) |
27 |
| - if ctxAuth.acquire_token_for_user(username=settings['username'], password=settings['password']): |
28 |
| - ctx = ClientContext(settings['url'], ctxAuth) |
| 47 | + ctx_auth = AuthenticationContext(url=settings['url']) |
| 48 | + if ctx_auth.acquire_token_for_app(client_id=settings['client_credentials']['client_id'], |
| 49 | + client_secret=settings['client_credentials']['client_secret']): |
| 50 | + ctx = ClientContext(settings['url'], ctx_auth) |
29 | 51 |
|
30 |
| - print_list_views(ctx) |
| 52 | + # print_list_views(ctx) |
| 53 | + print_view_items(ctx) |
31 | 54 |
|
32 | 55 | else:
|
33 |
| - print(ctxAuth.get_last_error()) |
| 56 | + print(ctx_auth.get_last_error()) |
0 commit comments