Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

upload_to_sharepoint-0.1.1.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

upload_to_sharepoint-0.1.1-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page