Using Dropbox as yun backup space

cd /usr/lib/python2.7/site-packages/
mkdir dbupload
cd dbupload
wget https://raw.githubusercontent.com/jncraton/PythonDropboxUploader/master/dbupload/__init__.py --no-check-certificate
wget https://raw.githubusercontent.com/jncraton/PythonDropboxUploader/master/dbupload/upload.py  --no-check-certificate
wget https://raw.githubusercontent.com/jncraton/PythonDropboxUploader/master/dbupload/dbconn.py --no-check-certificate
pip install mechanize
nano dropbox.py

#!/usr/bin/python
from dbupload import upload_file
#upload_file("local_filename","/Path/In/Dropbox/","remote_filename","email@example.com","password")
upload_file("sqljdbc.jar","/jdbc/","sqljdbc.jar","email@example.com","password")
chmod 755 dropbox.py
./dropbox.py

Hi sonnyyu, you seem to be the Dropbox/Arduino integration expert (among other skills) and therefore I think you can help me.

I haven't been able to install the Dropbox SDK on an Arduino Yun (it is up to date)

When I run

pip install dropbox

this is what I got in return

Collecting dropbox
/usr/lib/python2.7/site-packages/pip-9.0.1-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning.
  SNIMissingWarning
/usr/lib/python2.7/site-packages/pip-9.0.1-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning
  Could not fetch URL https://pypi.python.org/simple/dropbox/: There was a problem confirming the ssl certificate: [Errno 185090057] _ssl.c:340: error:0B084009:lib(11):func(132):reason(9) - skipping
  Could not find a version that satisfies the requirement dropbox (from versions: )
No matching distribution found for dropbox
/usr/lib/python2.7/site-packages/pip-9.0.1-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning

I have posted the question on Dropbox forum but got no useful answer. You are kind of last resource!!!

Many thanks in advance