How to upload the CSV file on OneDrive using python

Learner 1 Reputation point
2022-05-27T14:36:46.663+00:00

Hello guys,
I have csv file at my machine. I want to upload the file on OneDrive.
How can I achieve this by precise code ?
On the other hand I have write the below code for downloading the csv file from URL :
import requests
req = requests.get("https://www1.ncdc.noaa.gov/pub/data/cdo/samples/PRECIP_HLY_sample_csv.csv")
url_content = req.content
csv_file = open('downloaded.csv', 'wb')
csv_file.write(url_content)
csv_file.close()
Thanks

Microsoft 365 and Office Install, redeem, activate For business Windows
Microsoft 365 and Office OneDrive For business Windows
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Emi Zhang-MSFT 30,046 Reputation points Microsoft External Staff
    2022-05-30T08:01:24.827+00:00

    Hi @Learner ,
    Your problem is related to the OneDrive for Developer, I suggest you post this issue to OneDrive Developer forum:
    https://techcommunity.microsoft.com/t5/onedrive-developer/bd-p/OneDriveDeveloper
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.

    I also suggest you refer to this article:
    https://www.lieben.nu/liebensraum/2019/04/uploading-a-file-to-onedrive-for-business-with-python/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.

    Hope the information is helpful.


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.