Upload to SharePoint
A Python library to upload files to SharePoint.
Installation
You can install this package using pip:
pip install upload_to_sharepoint
Usage
To upload a file to SharePoint, you can use the upload_file_to_sharepoint
function. Here's how to do it:
Example
from upload_to_sharepoint.sharepoint_upload import upload_file_to_sharepoint
username = 'your_username'
password = 'your_password'
sharepoint_site = 'https://your-sharepoint-site-url'
target_folder_relative_url_base = '/sites/your_site_name/Shared Documents/target_folder'
file_name = 'path_to_your_file.txt'
upload_file_to_sharepoint(username, password, sharepoint_site, target_folder_relative_url_base, file_name)
Parameters
username
: Your SharePoint username.password
: Your SharePoint password.sharepoint_site
: The URL of your SharePoint site (e.g., https://your-organization.sharepoint.com/sites/your_site_name
).target_folder_relative_url_base
: The relative URL to the target folder in SharePoint (e.g., /sites/your_site_name/Shared Documents/target_folder
).file_name
: The path to the local file you want to upload.