Vadim Gremyachev

Results 81 comments of Vadim Gremyachev

Hi, no any particular reason, just historically `minimum-stability` was set to `dev`. Not sure, what would be the preferable option here, should we abandon `minimum-stability` attribute or replace its value...

Greetings Joanne! Not 100% certain why the error occurs in your case, but i remember someone experienced exactly the same error before. Turned out the root cause was the presence...

Greetings, most likely application has not been configured properly. A few things to verify: - for [`List available drives` endpoint](https://docs.microsoft.com/en-us/graph/api/drive-list?view=graph-rest-1.0&tabs=http) one of the following application permissions needs to be granted:...

Hi, it seems the permissions have not been granted for provided AppPrincipal. Refer [ wiki page, namely steps 6-7](https://github.com/vgrem/Office365-REST-Python-Client/wiki/How-to-connect-to-SharePoint-Online-and-and-SharePoint-2013-2016-2019-on-premises--with-app-principal) on how to grant the permissions per site collection (or tenant)

Greetings! Sounds like a good idea to handle throttling requests, thank you for pointing out and you are more then welcome to contribute! :) In terms of right direction here...

Hi, the following example demonstrates how to determine whether a file checked in or not: ```python ctx = ClientContext(site_url).with_credentials(credentials) file = ctx.web.get_file_by_server_relative_url(file_url).get().execute_query() if file.properties.get('CheckOutType') == 0: print("The file is checked...

Greetings, it appears the confusion comes from the fact that `View.view_fields` property returns: > Gets a the collection of field _names_ in the list view To retrieve items (field values)...

Greetings, starting from [`2.3.15` version](https://github.com/vgrem/Office365-REST-Python-Client/releases/tag/2.3.15) it is (_finally_) supported to pass file object into `create_upload_session` method: ```python def print_upload_progress(offset): file_size = os.path.getsize(local_path) print("Uploaded '{0}' bytes from '{1}'...[{2}%]".format(offset, file_size, round(offset /...

Hi there, the root cause why this error occurs in the first place is related with internals of server side `getFileByServerRelativeUrl` method implementation and summarized in [Supporting % and #...

Greetings @MauriceSnell and **all**, here is an important update, in [`2.3.14` version](https://github.com/vgrem/Office365-REST-Python-Client/releases/tag/2.3.14) a few improvements in terms for working with large lists have been introduced > By _large_ the list...