-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Welcome v1.1.2, the last Python 2 version ?
- Loading branch information
Showing
2 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
# SeedboxSync | ||
[![Build Status](https://travis-ci.org/llaumgui/seedboxsync.svg?branch=master)](https://travis-ci.org/llaumgui/seedboxsync) [![Code Climate](https://codeclimate.com/github/llaumgui/seedboxsync/badges/gpa.svg)](https://codeclimate.com/github/llaumgui/seedboxsync) [![PyPI version](https://badge.fury.io/py/seedboxsync.svg)](https://pypi.python.org/pypi/seedboxsync) [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/llaumgui/seedboxsync.svg)](http://isitmaintained.com/project/llaumgui/seedboxsync "Average time to resolve an issue") [![Percentage of issues still open](http://isitmaintained.com/badge/open/llaumgui/seedboxsync.svg)](http://isitmaintained.com/project/llaumgui/seedboxsync "Percentage of issues still open") | ||
[![Build Status](https://travis-ci.org/llaumgui/seedboxsync.svg?branch=master)](https://travis-ci.org/llaumgui/seedboxsync) | ||
[![Code Climate](https://codeclimate.com/github/llaumgui/seedboxsync/badges/gpa.svg)](https://codeclimate.com/github/llaumgui/seedboxsync) | ||
[![PyPI version](https://badge.fury.io/py/seedboxsync.svg)](https://pypi.python.org/pypi/seedboxsync) | ||
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/llaumgui/seedboxsync.svg)](http://isitmaintained.com/project/llaumgui/seedboxsync "Average time to resolve an issue") | ||
[![Percentage of issues still open](http://isitmaintained.com/badge/open/llaumgui/seedboxsync.svg)](http://isitmaintained.com/project/llaumgui/seedboxsync "Percentage of issues still open") | ||
|
||
Provides synchronization functions between your NAS and your seedbox: | ||
|
||
* Syncs a local black hole (ie: a NAS folder) with the black hole of your seedbox. | ||
* Downloads files from your seedbox to your NAS. Stores the list of downloaded files in a sqlite database, to prevent to download a second time. | ||
* Also provides queries to know last torrents, last downloads, etc. | ||
|
||
|
||
## Requirements | ||
See requirements.txt. | ||
|
||
## Python support | ||
* Python 3.4+ support look at _develop_ branch. | ||
|
||
* This branch is a legacy Python 2.7 version. | ||
* Python 3.4+ support look at _master_ branch. | ||
|
||
## Full documentation | ||
See: [https://llaumgui.github.io/seedboxsync/](https://llaumgui.github.io/seedboxsync/) | ||
|
||
See: [https://llaumgui.github.io/seedboxsync/](https://llaumgui.github.io/seedboxsync/) | ||
|
||
## License | ||
|
||
Released under the [GPL v2](http://opensource.org/licenses/GPL-2.0). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ | |
The seedboxsync package with all SeedBoxSync modules. | ||
""" | ||
|
||
__version__ = '1.1.1' | ||
__version__ = '1.1.2' | ||
|