Add sabnzbd (#29)
* Added plex permissions and folder structure * corrected typo * Added sabnzbd support * Fix folder creation for usenet * Tweak for sabnzbd config path * Changed download path * Update docker-compose.yml * Update docker-compose.yml * Update README.md
This commit is contained in:
10
main.py
10
main.py
@@ -81,8 +81,14 @@ print('\n===BITTORRENT===')
|
||||
services_classed['torrent'] = []
|
||||
print('Use qBittorrent? [Y/n]', end=" ")
|
||||
take_input('qbittorrent', 'torrent')
|
||||
if len(services_classed['torrent']) == 0:
|
||||
print('Warning: no BitTorrent clients selected.')
|
||||
|
||||
print('\n===USENET===')
|
||||
services_classed['usenet'] = []
|
||||
print('Use SABnzbd? [Y/n]', end=" ")
|
||||
take_input('sabnzbd', 'usenet')
|
||||
|
||||
if len(services_classed['torrent']) == 0 and len(services_classed['usenet']) == 0:
|
||||
print('Warning: no usenet or BitTorrent clients selected.')
|
||||
|
||||
services = []
|
||||
for service_class in services_classed.keys():
|
||||
|
||||
Reference in New Issue
Block a user