mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
save working code of sharepoint and try stuff out after saving
This commit is contained in:
parent
955dc605fc
commit
8751dfd9a1
1 changed files with 9 additions and 2 deletions
|
|
@ -35,9 +35,16 @@ def main():
|
|||
)
|
||||
|
||||
installer_folders = sharepoint_client.list_folder_contents("/")
|
||||
logger.info(pformat(installer_folders))
|
||||
logger.info(len(installer_folders))
|
||||
#logger.info(pformat(installer_folders))
|
||||
|
||||
skipped = 0
|
||||
for installer_folder in installer_folders["value"]:
|
||||
if installer_folder["name"] == "Mark Billingham":
|
||||
logger.info(pformat(installer_folder))
|
||||
|
||||
else:
|
||||
skipped += 1
|
||||
logger.info(f"skipped {skipped}")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue