A library to upload files to SharePoint.
Project description
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
# User credentials
username = 'your_username'
password = 'your_password' # Consider using a more secure method for password management
# SharePoint site details
sharepoint_site = 'https://your-sharepoint-site-url'
target_folder_relative_url_base = '/sites/your_site_name/Shared Documents/target_folder'
# Local file to upload
file_name = 'path_to_your_file.txt'
# Upload the file
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters