Sync file/directories across multiple devices (Similar to Google drive, Dropbox) using AWS S3
File sync(Similar to Google drive, Dropbox) using AWS S3.
Note: S3 bucket must be created beforehand.
Python 2.x, pip, AWS account (for S3)
etc/conf/settings.py
. Other configurations can also be changed but they are optional.<project-dir>
, create virtual environment and then activate it as
$ cd <project-dir>
$ virtualenv .environment
$ source .environment/bin/activate
PYTHONPATH
as
$ export PYTHONPATH="$PYTHONPATH:." # . corresponds to current directory(project-dir)
<project-dir>
install requirements/dependencies as
$ pip install -r requirements.txt
$ python tests/sync.py