Metadata-Version: 2.0
Name: b2upload
Version: 0.1.9
Summary: backblaze folder uploader
Home-page: https://github.com/knightofni/backblaze-backup
Author: Nicolas Paris
Author-email: ni.paris@gmail.com
License: MIT
Keywords: backup devops
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires: docopt
Requires: cerberus
Requires: b2
Requires-Dist: b2 (>=0.5.6)
Requires-Dist: cerberus (>=0.9.2)
Requires-Dist: docopt (>=0.6.2)

# BackBlaze Backup

pushes the content of a folder (and all its subdirectories) to [backblaze](https://www.backblaze.com/)

## Set up

install b2upload

`pip install b2upload`

create a `.backblaze` in your home directory
it should contain the following :

```
[backblaze]
accountId = <your-account-id>
applicationKey = <your-application-key>
```


## usage

to upload all files and subfolders of the current directory

`b2upload --bucket <bucket-name>`

to upload all files and subfolders of a specific directory

`b2upload --bucket <bucket-name> --directory <absolute-path-to-dir>`


