You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Safihre c52ce58b6d Handle filenames in redirected URL's better 7 years ago
cherrypy Correct spelling of 'separate' in a few contexts 8 years ago
email Email notification for failed URL fetches. 13 years ago
gntp Update GNTP to 1.0.3 8 years ago
icons Create new ICO files 9 years ago
interfaces Changing Server priority would give JSON-page 7 years ago
licenses Update text files for 2.0.0 Final (again) 8 years ago
linux Update Wiki-link 9 years ago
osx Use 64bit unrar 5.5.0 compatible with ElCapitan 7 years ago
po Automatic translation update 7 years ago
sabnzbd Handle filenames in redirected URL's better 7 years ago
scripts Update copyright to 2018 7 years ago
six Update Six to 1.11.0 8 years ago
tests Update copyright to 2018 7 years ago
tools Update copyright to 2018 7 years ago
util Update copyright to 2018 7 years ago
win Update 7zip to 18.01 for Windows 7 years ago
.gitignore New feature: Safari pinned tab icon 8 years ago
.travis.yml Basic NZB adding via upload or from disk 8 years ago
ABOUT.txt Prepare text-files for 2.3.3Beta1 7 years ago
COPYRIGHT.txt Update copyright to 2018 7 years ago
GPL2.txt Eliminate superfluous 'main' folder 15 years ago
GPL3.txt Eliminate superfluous 'main' folder 15 years ago
INSTALL.txt Prepare text-files for 2.3.3Beta1 7 years ago
ISSUES.txt Update ISSUES to match the website and list Synology being special 8 years ago
LICENSE.txt Update copyright to 2018 7 years ago
PKG-INFO Update text files for 2.3.3 7 years ago
README.md Use special patched version of subprocess for Unicode POpen on Windows 8 years ago
README.mkd Update text files for 2.3.3 7 years ago
SABHelper.py Update copyright to 2018 7 years ago
SABnzbd.py Add CORS * header 7 years ago
appveyor.yml Use special patched version of subprocess for Unicode POpen on Windows 8 years ago
portable.cmd Make sure that the invoking window disappears 9 years ago

README.md

SABnzbd - The automated Usenet download tool

SABnzbd is an Open Source Binary Newsreader written in Python.

It's totally free, incredibly easy to use, and works practically everywhere. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. If you want to know more you can head over to our website: https://sabnzbd.org.

Resolving Dependencies

SABnzbd has a good deal of dependencies you'll need before you can get running. If you've previously run SABnzbd from one of the various Linux packages, then you likely already have all the needed dependencies. If not, here's what you're looking for:

  • python (only 2.7.x and higher, but not 3.x.x)
  • python-cheetah
  • par2 (Multi-threaded par2 installation guide can be found here)
  • unrar (Make sure you get the "official" non-free version of unrar)
  • sabyenc (installation guide can be found here)

Optional:

  • python-cryptography (enables certificate generation and detection of encrypted RAR-files during download)
  • python-dbus (enable option to Shutdown/Restart/Standby PC on queue finish)
  • 7zip
  • unzip

Your package manager should supply these. If not, we've got links in our more in-depth installation guide.

Running SABnzbd from source

Once you've sorted out all the dependencies, simply run:

python -OO SABnzbd.py

Or, if you want to run in the background:

python -OO SABnzbd.py -d -f /path/to/sabnzbd.ini

If you want multi-language support, run:

python tools/make_mo.py

Our many other command line options are explained in depth here.

About Our Repo

The workflow we use, is a simplified form of "GitFlow". Basically:

  • master contains only stable releases (which have been merged to master) and is intended for end-users.
  • develop is the target for integration and is not intended for end-users.
  • 1.1.x is a release and maintenance branch for 1.1.x (1.1.0 -> 1.1.1 -> 1.1.2) and is not intended for end-users.
  • feature/my_feature is a temporary feature branch based on develop.
  • bugfix/my_bugfix is an optional temporary branch for bugfix(es) based on develop.

Conditions:

  • Merging of a stable release into master will be simple: the release branch is always right.
  • master is not merged back to develop.
  • develop is not re-based on master.
  • Release branches branch from develop only.
  • Bugfixes created specifically for a release branch are done there (because they are specific, they're not cherry-picked to develop).
  • Bugfixes done on develop may be cherry-picked to a release branch.
  • We will not release a 1.0.2 if a 1.1.0 has already been released.