Replace PersonalSections with ChannelFollows for get_followers, thanks to @RakSrinaNa

This commit is contained in:
Alessandro Maggio
2021-11-16 21:48:57 +01:00
parent 5efbed68dc
commit d0487a2dbb
6 changed files with 83 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ import logging
from colorama import Fore
from TwitchChannelPointsMiner import TwitchChannelPointsMiner
from TwitchChannelPointsMiner.logger import LoggerSettings, ColorPalette
from TwitchChannelPointsMiner.classes.Settings import Priority
from TwitchChannelPointsMiner.classes.Settings import Priority, FollowersOrder
from TwitchChannelPointsMiner.classes.entities.Bet import Strategy, BetSettings, Condition, OutcomeKeys, FilterCondition, DelayMode
from TwitchChannelPointsMiner.classes.entities.Streamer import Streamer, StreamerSettings
@@ -76,5 +76,6 @@ twitch_miner.mine(
"streamer-username10",
"streamer-username11"
], # Array of streamers (order = priority)
followers=False # Automatic download the list of your followers (unable to set custom settings for you followers list)
followers=False, # Automatic download the list of your followers (unable to set custom settings for you followers list)
order=FollowersOrder.ASC # Order of the followers list. ASC or DESC
)