where does Sabnzbd store the information about how much has been downloaded
To-day, This week, This month and Total ??
the OS is Debian 10.
it is not in .sabnzbd.ini
Downloaded data
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Re: Downloaded data
Check out
My guess: totals10.sab ... which is probably a python pickled file.
Code: Select all
~/.sabnzbd/admin
Re: Downloaded data
and with the code below you pretty print the pickle file totals10.sab
And see https://github.com/sabnzbd/sabnzbd/blob ... #L209-L224 for format of the pickle
Code: Select all
import pickle
import pprint
import sys
input_pickle_file = sys.argv[1]
obj = pickle.load(open(input_pickle_file, "rb"))
pprint.pprint(obj)