Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit 3c090f2

Browse files
committed
final edit
1 parent 21fd858 commit 3c090f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# CommandLineFileExplorer sample
22

33
The CommanLineFileExplorer sample is a sample app written in Python and uses the OneDrive SDK for Python.
4-
The sample shows you how to work with a user's files and folders on OneDrive. In this sample, you will learn how to upload or download a file, get a sharing link, explore files and folder, and more. Note that the sample does not work for OneDrive for Business.
4+
The sample shows you how to work with a user's files and folders on OneDrive. In this sample, you will learn how to upload or download a file, get a sharing link, explore files and folder, and more.
55

66
## Set up
77

88
1. If you don't have Python installed, go to [Python.org](http://python.org) and scroll over **Downloads** to choose the install for your platform. For example, choose **Download for Windows** | **Python 3.5.0** to download Python for Windows. Follow the instructions in [Using the Python Interpreter](https://docs.python.org/3/tutorial/interpreter.html) to complete your Python set up.
9-
2. Download the [OneDrive SDK for Python](https://github.com/OneDrive/onedrive-sdk-python/).
9+
2. Download the [OneDrive SDK for Python](https://github.com/OneDrive/onedrive-sdk-python/) to get the sample.
1010
3. Open a command prompt and type `pip install requests` to install [Requests](http://docs.python-requests.org/en/latest/).
1111
4. In the command prompt, type `pip install pillow` to install [Pillow](https://pypi.python.org/pypi/Pillow/3.0.0).
1212
5. Next, type `pip install onedrivesdk` to install the OneDrive SDK for Python.
@@ -97,7 +97,7 @@ def get_sharing_link(client, item_id):
9797

9898
### List changes for an item
9999

100-
OneDrive keeps track of changes for an item. In this example, the `delta` method is called on an item to list all changes for that item. The token represents TBD
100+
OneDrive keeps track of changes for an item. In this example, the `delta` method is called on an item to list all changes for that item. The token represents the last sync token you got from the call to 'delta'.
101101

102102
```python
103103
def list_changes(client, item_id, token):

0 commit comments

Comments
 (0)