Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
0.5.0 Stabalize Files
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrollins committed Apr 18, 2020
1 parent 9cb27bb commit 1c1ca82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Access REST API
site = Site('https://abc.sharepoint.com/sites/MySharePointSite/', version=Version.v2016, authcookie=authcookie)
folder = site.Folder('Shared Documents/This Folder')
folder.upload_file('Hello', 'new.txt')
folder.read_txt_file('new.txt')
folder.get_file('new.txt')
folder.check_out('new.txt')
folder.check_in('new.txt', "My check-in comment")
folder.delete_file('new.txt')
Expand Down
6 changes: 1 addition & 5 deletions docs/files.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,8 @@ or for a binary file ::

Download a file ::

folder.download_file('source.txt', 'destination.txt')
folder.get_file('source.txt', 'destination.txt')
Read a text file ::

folder.read_txt_file('new.txt')

Check out a file ::

folder.check_out('new.txt')
Expand Down
2 changes: 1 addition & 1 deletion shareplum/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.6"
__version__ = "0.5.0"

0 comments on commit 1c1ca82

Please sign in to comment.