@@ -189,7 +189,7 @@ Usage
189
189
import adal
190
190
from office365.graph_client import GraphClient
191
191
192
- def acquire_token ():
192
+ def acquire_token_func ():
193
193
authority_url = ' https://login.microsoftonline.com/{tenant_id_or_name} '
194
194
auth_ctx = adal.AuthenticationContext(authority_url)
195
195
token = auth_ctx.acquire_token_with_client_credentials(
@@ -211,7 +211,7 @@ The example demonstrates how to send an email via [Microsoft Graph endpoint](htt
211
211
``` python
212
212
from office365.graph_client import GraphClient
213
213
214
- client = GraphClient(acquire_token )
214
+ client = GraphClient(acquire_token_func )
215
215
216
216
message_json = {
217
217
" Message" : {
@@ -232,8 +232,7 @@ message_json = {
232
232
}
233
233
234
234
235
- client.users[login_name].send_mail(message_json)
236
- client.execute_query()
235
+ client.users[login_name].send_mail(message_json).execute_query()
237
236
```
238
237
239
238
@@ -251,7 +250,7 @@ is used to obtain token
251
250
``` python
252
251
import msal
253
252
254
- def acquire_token ():
253
+ def acquire_token_func ():
255
254
"""
256
255
Acquire token via MSAL
257
256
"""
@@ -279,10 +278,8 @@ which corresponds to [`list available drives` endpoint](https://docs.microsoft.c
279
278
from office365.graph_client import GraphClient
280
279
281
280
tenant_name = " contoso.onmicrosoft.com"
282
- client = GraphClient(acquire_token)
283
- drives = client.drives
284
- client.load(drives)
285
- client.execute_query()
281
+ client = GraphClient(acquire_token_func)
282
+ drives = client.drives.get().execute_query()
286
283
for drive in drives:
287
284
print (" Drive url: {0} " .format(drive.web_url))
288
285
```
@@ -292,12 +289,9 @@ for drive in drives:
292
289
293
290
``` python
294
291
from office365.graph_client import GraphClient
295
- client = GraphClient(acquire_token )
292
+ client = GraphClient(acquire_token_func )
296
293
# retrieve drive properties
297
- drive = client.users[" {user_id_or_principal_name} " ].drive
298
- client.load(drive)
299
- client.execute_query()
300
-
294
+ drive = client.users[" {user_id_or_principal_name} " ].drive.get().execute_query()
301
295
# download files from OneDrive into local folder
302
296
with tempfile.TemporaryDirectory() as path:
303
297
download_files(drive.root, path)
@@ -307,15 +301,12 @@ where
307
301
308
302
``` python
309
303
def download_files (remote_folder , local_path ):
310
- drive_items = remote_folder.children
311
- client.load(drive_items)
312
- client.execute_query()
304
+ drive_items = remote_folder.children.get().execute_query()
313
305
for drive_item in drive_items:
314
306
if not drive_item.file.is_server_object_null: # is file?
315
307
# download file content
316
308
with open (os.path.join(local_path, drive_item.name), ' wb' ) as local_file:
317
- drive_item.download(local_file)
318
- client.execute_query()
309
+ drive_item.download(local_file).execute_query()
319
310
```
320
311
321
312
@@ -339,9 +330,8 @@ which corresponds to [`Create team` endpoint](https://docs.microsoft.com/en-us/g
339
330
``` python
340
331
from office365.graph_client import GraphClient
341
332
tenant_name = " contoso.onmicrosoft.com"
342
- client = GraphClient(tenant_name, acquire_token)
343
- new_team = client.groups[" {group_id} " ].add_team()
344
- client.execute_query()
333
+ client = GraphClient(tenant_name, acquire_token_func)
334
+ new_team = client.groups[" {group_id} " ].add_team().execute_query_retry()
345
335
```
346
336
347
337
0 commit comments