Я пытаюсь загрузить текстовый файл с моего ресурса, используя следующий код.
from shareplum import Site
from shareplum import Office365
from shareplum import folder
authcookie = Office365('https://my.sharepoint.com', username='username', password='password').GetCookies()
site = Site('https://my.sharepoint.com/', authcookie=authcookie)
folder_1 = site.folder('Shared Documents/This folder')
folder_1.download_file('test.txt')
При запуске кода я получаю следующую ошибку:
AttributeError: '_Site2007' object has no attribute 'folder'
Любой помощь приветствуется