Office365-REST-Python-Client icon indicating copy to clipboard operation
Office365-REST-Python-Client copied to clipboard

Microsoft 365 & Microsoft Graph Library for Python

Results 293 Office365-REST-Python-Client issues
Sort by recently updated
recently updated
newest added

I am using this def to list the files in a sharepoint folder. ---------------- my def --------------------------------- ``` def list_files_sharepoint(folder_url): folder = ctx.web.get_folder_by_server_relative_url(folder_url) ctx.load(folder) ctx.execute_query() files = folder.files ctx.load(files) ctx.execute_query()...

duplicate
enhancement

Hi All, I have done sharepoint excel automation from Jupyter notebook (web based). It has access to company's database, it fetches latest data, reads sharepoint excel, appends the dataframe into...

question

#Python Do we have a snippet to copy a file from one home directory to a different home directory of the same Sharepoint? Both directories will have different client IDs...

question

I'm trying to add headers to an existing Sharepoint list but I received the error message: 'dict' object has no attribute 'FieldTypeKind' The code I'm using is the following: import...

question

**Issue: Error when Retrieving Pages Content of a Notebook Section using Graph Client** **Description:** I'm using the Microsoft Graph client to retrieve data from a SharePoint site's OneNote notebook. When...

bug

Hi there, is there a way to access the "@odata.type" property in the response? I'm querying group members and would like to distinguish between users, (sub-)groups or devices. I tried...

question

Is it possible to impersonate as site user to checkout file on behalf of site user.

question

Pagination with `page_size` set is not working as expected. Possibly pagination in general, but I haven't tested with the default page size. I have 4 site pages. When I set...

bug

```def add_new_sharepoint_list_item(title,description): client = GraphClient(get_client) site = client.sites site = site.get_by_url('https://inghamcnty.sharepoint.com/sites/EmployeeDirectory') lists = site.lists directory_list = lists.get_by_name("Directory") # Retrieve items from the list # Access the items collection items =...

question

I was wondering if I use allow_ntlm=True for OnPremise SharePoint. Each query will contains 3 HTTP transacitions? In each query, the first http response indicates www-authenticate:NTLM, the second transaction finish...

question