https://github.com/prabhakar267/sync-wars
A simple two-way application to synchronise directories across systems
https://github.com/prabhakar267/sync-wars
dropbox-api synchronization
Last synced: 13 days ago
JSON representation
A simple two-way application to synchronise directories across systems
- Host: GitHub
- URL: https://github.com/prabhakar267/sync-wars
- Owner: prabhakar267
- License: mit
- Created: 2017-03-07T16:53:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T01:31:29.000Z (over 1 year ago)
- Last Synced: 2025-09-11T17:45:46.886Z (6 months ago)
- Topics: dropbox-api, synchronization
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sync Wars
> A simple two-way application to synchronise directories across systems. It uses [Dropbox API](https://www.dropbox.com/developers) to upload the data from one directory and download it to all the other systems.
## Setup
```shell
git clone https://github.com/prabhakar267/sync-wars.git && cd sync-wars
```
```shell
pip install virtualenv
virtualenv venv
source venv/bin/activate
```
```shell
[sudo] pip install -r requirements.txt
```
+ Edit [config.py.sample](config.py.sample) and add Dropbox API keys ([dropbox.com/developers](https://www.dropbox.com/developers)) and change the **directories** accordingly.
+ Save the updated file as **config.py**
```shell
python upload.py &
```
```shell
python download.py
```