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 ab020a0654 Rework the naming of the main SABnzbd threads 5 years ago
.github Set version to 3.2.0-develop and drop Python 3.5 support 5 years ago
.tx Run Transifex push/pull in GitHub actions 5 years ago
email Email notification for failed URL fetches. 13 years ago
icons svg icons for sabtraylinux 5 years ago
interfaces Fix styling of mult-edit box 5 years ago
licenses remove cruft from licenses dir 5 years ago
linux set utf-8 encoding in systemd service 5 years ago
osx Update UnRar to 5.91 5 years ago
po Update translatable texts 5 years ago
sabnzbd Rework the naming of the main SABnzbd threads 5 years ago
scripts Update copyright year to 2020 5 years ago
snap Request access to the HOME folder in the snap 5 years ago
tests work_name would not be sanatized when adding NZB's 5 years ago
tools Add UTF8 BOM manually to NSIS file 5 years ago
win Update UnRar to 5.91 5 years ago
.gitignore Update .gitignore to match new build results 5 years ago
.lgtm.yml Remove six dependency 5 years ago
.travis.yml Set version to 3.2.0-develop and drop Python 3.5 support 5 years ago
COPYRIGHT.txt Update text files for 3.0.0 Alpha 1 5 years ago
GPL2.txt Eliminate superfluous 'main' folder 15 years ago
GPL3.txt Eliminate superfluous 'main' folder 15 years ago
INSTALL.txt More text-file updates for 3.2.0-develop 5 years ago
ISSUES.txt More text-file updates for 3.2.0-develop 5 years ago
LICENSE.txt Update copyright year to 2020 5 years ago
PKG-INFO More text-file updates for 3.2.0-develop 5 years ago
README.md Set version to 3.2.0-develop and drop Python 3.5 support 5 years ago
README.mkd More text-file updates for 3.2.0-develop 5 years ago
SABnzbd.py Rework the naming of the main SABnzbd threads 5 years ago
appveyor.yml Combine pip calls 5 years ago
portable.cmd Make sure that the invoking window disappears 9 years ago
requirements.txt More text-file updates for 3.2.0-develop 5 years ago

README.md

SABnzbd - The automated Usenet download tool

Travis CI AppVeryor Snap Status License

SABnzbd is an Open Source Binary Newsreader written in Python.

It's totally free, 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. SABnzbd offers an easy setup wizard and has self-analysis tools to verify your setup.

If you want to know more you can head over to our website: https://sabnzbd.org.

Resolving Dependencies

SABnzbd has a few 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 (Python 3.6 and higher, often called python3)
  • Python modules listed in requirements.txt
  • par2 (Multi-threaded par2 installation guide can be found here)
  • unrar (make sure you get the "official" non-free version of unrar)

Optional:

  • See requirements.txt

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

Running SABnzbd from source

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

python3 -OO SABnzbd.py

Or, if you want to run in the background:

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

If you want multi-language support, run:

python3 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.