@@ -54,7 +54,7 @@ The following auth flows are supported:
54
54
```
55
55
Documentation: refer [Granting access using SharePoint App-Only](https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azureacs) for a details
56
56
57
- Example: [connect_with_app_principal.py](Office365-REST-Python-Client/blob/master/ examples/sharepoint/connect_with_app_principal.py)
57
+ Example: [connect_with_app_principal.py](examples/sharepoint/connect_with_app_principal.py)
58
58
59
59
- user credentials flow: `ClientContext.with_credentials(user_credentials)`
60
60
@@ -63,13 +63,13 @@ The following auth flows are supported:
63
63
user_credentials = UserCredential('{username}'),'{password}')
64
64
ctx = ClientContext('{url}').with_credentials(user_credentials)
65
65
```
66
- Example: [connect_with_user_credential.py](Office365-REST-Python-Client/blob/master/ examples/sharepoint/connect_with_user_credential.py)
66
+ Example: [connect_with_user_credential.py](examples/sharepoint/connect_with_user_credential.py)
67
67
68
68
- certificate credentials flow: `ClientContext.with_certificate(tenant, client_id, thumbprint, cert_path)`
69
69
70
70
Documentation: [Granting access via Azure AD App-Only](https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azuread)
71
71
72
- Example: [connect_with_client_certificate.py](Office365-REST-Python-Client/blob/master/ examples/sharepoint/connect_with_client_certificate.py)
72
+ Example: [connect_with_client_certificate.py](examples/sharepoint/connect_with_client_certificate.py)
73
73
74
74
#### Examples
75
75
@@ -121,13 +121,13 @@ print("Web title: {0}".format(web_title))
121
121
The list of examples:
122
122
123
123
- Working with files
124
- - [ download a file] ( Office365-REST-Python-Client/blob/master/ examples/sharepoint/files/download_file.py)
125
- - [ upload a file] ( Office365-REST-Python-Client/blob/master/ examples/sharepoint/files/upload_file.py)
124
+ - [ download a file] ( examples/sharepoint/files/download_file.py )
125
+ - [ upload a file] ( examples/sharepoint/files/upload_file.py )
126
126
127
127
- Working with lists and list items
128
- - [ create a list item] ( Office365-REST-Python-Client/blob/master/ examples/sharepoint/lists_and_items/data_generator.py)
129
- - [ read a list item] ( Office365-REST-Python-Client/blob/master/ examples/sharepoint/lists_and_items/read_large_list.py)
130
- - [ update a list item] ( Office365-REST-Python-Client/blob/master/ examples/sharepoint/lists_and_items/update_items_batch.py)
128
+ - [ create a list item] ( examples/sharepoint/lists_and_items/data_generator.py )
129
+ - [ read a list item] ( examples/sharepoint/lists_and_items/read_large_list.py )
130
+ - [ update a list item] ( examples/sharepoint/lists_and_items/update_items_batch.py )
131
131
- delete a list item
132
132
133
133
0 commit comments