GitXplorerGitXplorer
e

python-dropbox-examples

public
3 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
c05624e8efd14408d4736891923412fb5bb3957f

Improved Readme file

eelyssonmr committed 11 years ago
Unverified
5fd4480089c9371b8e18d9dc99bb8ef5f571d743

Added file operations CLI example.

eelyssonmr committed 11 years ago
Unverified
3e512f005c2c1dbe37308976574b027a1bd75968

Change How to Contribute section and python version section.

eelyssonmr committed 11 years ago
Unverified
efd2d062bc08809c0d648d1fa3c8f1730b1a84e5

Update description

eelyssonmr committed 11 years ago
Unverified
b3827ef192fb164b7fcd3c72d1a946cda5a9fbf0

Added first example: Token Auth Process.

eelyssonmr committed 11 years ago
Unverified
dc1f66c56b572d6dd91a0b9a647776a3cee91c89

Updated Readme file

eelyssonmr committed 11 years ago

README

The README file for this repository.

#Python Dropbox API Examples

These are some examples of how you can use Python's Dropbox API in your projects.

Before we get started is necessary to do a few steps to configure dropbox and your environment.

First of all we need to create a new APP in your dropbox account https://www.dropbox.com/developers/apps. If you don't have an account you can register here.

Then you must install Dropbox Package in your environment. It can be done using pip command:

pip install dropbox

This command will install Dropbox API and all its dependency needed to get started.

Add your Dropbox information into your system variables to be more easy and quickly run the examples. Into a Linux the export command can handle it

export DROPBOX_APP_KEY=<your_app_key>
export DROPBOX_APP_SECRET=<your_app_secret>
export DROPBOX_APP_TOKEN=<your_app_token>

More information about environment variables in Linux systems can be found here.

These examples where run using Python 3.3

#How to Contribute You can contribute by creating more examples and finding any bugs or improvements for the examples already done. Also you can help sharing to your friends.