Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theduke/cloudkeep
Back up data form all of your cloud services to a local or remote Filesystem (Dropbox, Amazon S3, ...)
https://github.com/theduke/cloudkeep
Last synced: about 2 months ago
JSON representation
Back up data form all of your cloud services to a local or remote Filesystem (Dropbox, Amazon S3, ...)
- Host: GitHub
- URL: https://github.com/theduke/cloudkeep
- Owner: theduke
- License: other
- Created: 2013-01-06T13:57:39.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-18T14:42:26.000Z (almost 12 years ago)
- Last Synced: 2024-10-31T04:50:40.219Z (about 2 months ago)
- Language: Python
- Size: 297 KB
- Stars: 8
- Watchers: 5
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
=============
MyCloudBackup
=============We use dozens of cloud services on a daily basis. Most of them are a wonderful
thing, making our lifes easier and bringing great functionality.But should you trust these services with all your valued private data?
What if one of those services should go down, cease operations, or be hacked?This program gets all of your precious data from your cloud services, and
backs it up to a storage of your choice (your own hard drive, Dropbox, Amazon S3,
an FTP Server, ...) so you always have a backup if something happens.You can select the services you use, and back them up to the storage of your
choice.MCB works from the command line, and also has a GUI.
Services
========MyCloudBackup supports the following cloud services:
* Google Gmail - Back up all your Gmail mails into mbox files, does not preserv tags
* Google Calendar - Back up all your calendars as ical files* Dropbox - Back up your entire Dropbox folder
* Email (Imap) - Back up any IMAP-accesible email account into widely used mbox files
* Github - Copy all your repositories and their issues
* Evernote - Back up all your notes and files
* Facebook - Back up your Facebook conversations, wall posts, photos, etc.Outputs
=======MyCloudBackup supports the following outputs (backup targets):
* Filesystem - Backup to your own computer
* Dropbox - Back up to your Dropbox account
* FTP - Back up to a remote FTP serverSoon to come:
* Amazon S3
...Installation
============You can install MyCloudBackup by using setuptools pip
Install setuptools: http://pypi.python.org/pypi/setuptoolsOn linux systems you would do this:
sudo pip install mycloudbackup
---------------------------------
-IMPORTANT NOTE - PYTHON VERSION-
---------------------------------MCB runs well with Python3, but many of the dependencies exist only for Python2.
So you should run MCB with python2.If you have multible pythons on your system,
be sure to use the Python2 pip for installing.
If your systems default version is Python3,
you also need to start MCB with the python2 executable.for example:
python2 mcb
python2 mcb-guiUsage
=====Usage - GUI
===========Start the GUI with mcb-gui
The GUI is a work in progress, but the essentials work.
You can already add new services and run the backup process.Usage - CLI
===========Run mcb -h to show help.
You can easily add configuration and run backups with the CLI.================================================================================
Feedback and Development
========================MCB is under the New BSD License (see LICENSE.txt).
Bug reports, suggestions and contributions are very welcome.
Development happens at https://github.com/theduke/mycloudbackup .Dependencies
============These will automaticall be installed by pip.
Required python packages:
* pyyaml - For config files (http://pyyaml.org)
* requests To ease working with various APIs(http://python-requests.org)DropboxService:
* Dropbox python library: https://www.dropbox.com/developers/reference/sdkGithubService:
* GitPython: https://github.com/gitpython-developersEvernoteService:
* evernote: https://github.com/evernote/evernote-sdk-pythonPlugin System
=============MCB has a modular plugin system, that makes it easy to add new services and
outputs.Will write documentation on how to write plugins soon.
For now, just copy an existing one and adapt it.Starting point for services: mcb/services/github.py
for outputs: mcb/outputs/dropbox.pyContributors
============Christoph Herzog - [email protected]