lbry-sdk/lbry/wallet/server/db/trending/__init__.py

8 lines
101 B
Python

from . import zscore
from . import ar
TRENDING_ALGORITHMS = {
'zscore': zscore,
'ar': ar
}