Sharepoint utils
Utilities for sharepoint API operations.
SharepointUtils
¶
Bases: object
Class with methods to connect and extract data from SharePoint.
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
|
__init__(client_id, tenant_id, local_path, api_version, site_name, drive_name, file_name, secret, folder_relative_path=None, chunk_size=100, local_options=None, conflict_behaviour='replace')
¶
Instantiate objects of the SharepointUtils class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
client_id |
str
|
application (client) ID of your Azure AD app. |
required |
tenant_id |
str
|
tenant ID (directory ID) from Azure AD for authentication. |
required |
local_path |
str
|
local directory path (Volume) where the files are temporarily |
required |
api_version |
str
|
Graph API version to use. |
required |
site_name |
str
|
name of the SharePoint site where the files are stored. |
required |
drive_name |
str
|
name of the document library or drive in SharePoint. |
required |
file_name |
str
|
name of the file to be stored in sharepoint. |
required |
secret |
str
|
client secret for authentication. |
required |
folder_relative_path |
str
|
optional; relative path within the |
None
|
chunk_size |
int
|
Optional; size of file chunks to be uploaded in |
100
|
local_options |
dict
|
Optional; additional options for customizing write |
None
|
conflict_behaviour |
str
|
Optional; defines how conflicts in file uploads are |
'replace'
|
Returns:
Type | Description |
---|---|
A SharepointUtils object. |
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
check_if_endpoint_exists(site_name, drive_name, folder_root_path=None)
¶
Check if a specified endpoint exists in SharePoint.
This method checks whether a specific endpoint exists within a SharePoint site.
If folder_root_path
is provided, the method checks for the existence of that
specific folder within the drive.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
site_name |
str
|
Name of the SharePoint site. |
required |
drive_name |
str
|
Name of the SharePoint drive (document library) |
required |
folder_root_path |
str
|
Optional; the relative path of the folder within |
None
|
Returns:
Type | Description |
---|---|
bool
|
True if the file or folder exists, False otherwise. |
Raises:
Type | Description |
---|---|
SharePointAPIError
|
If there's an issue with SharePoint API request. |
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
check_if_local_path_exists(local_path)
¶
Check if a specified local path exists.
This method checks whether a specific local path exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
local_path |
str
|
Local path (Volume) where the files are temporarily stored. |
required |
Returns:
Type | Description |
---|---|
None
|
True if the folder exists, False otherwise. |
Raises:
Type | Description |
---|---|
IOError
|
If there is an error when reading from the local path. |
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
delete_local_path()
¶
Delete a temporary folder.
This method deletes all the files in a given directory.
Returns:
Type | Description |
---|---|
None
|
None. |
Raises:
Type | Description |
---|---|
IOError
|
If there is an issue during the file writing process. |
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
write_to_local_path(df)
¶
Write a Spark DataFrame to a local path (Volume) in CSV format.
This method writes the provided Spark DataFrame to a specified local directory, saving it in CSV format. The method renames the output file from its default "part-*" naming convention to a specified file name. The dictionary local_options enables the customisation of the write action. The customizable options can be found here: https://spark.apache.org/docs/3.5.1/sql-data-sources-csv.html.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df |
DataFrame
|
The Spark DataFrame to write to the local file system. |
required |
Returns:
Type | Description |
---|---|
None
|
None. |
Raises:
Type | Description |
---|---|
IOError
|
If there is an issue during the file writing process. |
Source code in mkdocs/lakehouse_engine/packages/utils/sharepoint_utils.py
write_to_sharepoint()
¶
Upload a local file to SharePoint in chunks using the Microsoft Graph API.
This method creates an upload session and uploads a local CSV file to a
SharePoint document library.
The file is divided into chunks (based on the chunk_size
specified)
to handle large file uploads and send sequentially using the upload URL
returned from the Graph API.
The method uses instance attributes such as api_domain
, api_version
,
site_name
, drive_name
, folder_relative_path
, and file_name
to
construct the necessary API calls and upload the file to the specified
location in SharePoint.
Returns:
Type | Description |
---|---|
None
|
None. |
Raises:
Type | Description |
---|---|
APIError
|
If an error occurs during any stage of the upload |