enhance the rwf command
This commit is contained in:
parent
f43905b760
commit
710c570c8d
2
myTS3.py
2
myTS3.py
|
@ -125,7 +125,7 @@ class TSbot:
|
|||
commands.ticker(self, "")
|
||||
|
||||
# Hijacked for WoW
|
||||
commands.rwf(self)
|
||||
# commands.rwf(self)
|
||||
|
||||
else:
|
||||
pass
|
||||
|
|
|
@ -3,8 +3,8 @@ TBD
|
|||
"""
|
||||
|
||||
__author__ = "Lukas Mahler"
|
||||
__version__ = "0.0.1"
|
||||
__date__ = "21.03.2022"
|
||||
__version__ = "0.0.2"
|
||||
__date__ = "08.04.2022"
|
||||
__email__ = "m@hler.eu"
|
||||
__status__ = "Development"
|
||||
|
||||
|
@ -201,7 +201,12 @@ def rwf(self):
|
|||
this is very specific to my use, you can disable this in the config.
|
||||
"""
|
||||
url = "https://raider.io/api/v1/raiding/progression?raid=sepulcher-of-the-first-ones&difficulty=mythic®ion=world"
|
||||
data = json.loads(requests.get(url).text)
|
||||
req = requests.get(url)
|
||||
|
||||
if req.status_code != 200:
|
||||
return
|
||||
|
||||
data = json.loads(req.text)
|
||||
|
||||
if not data:
|
||||
return
|
||||
|
@ -225,7 +230,7 @@ def rwf(self):
|
|||
|
||||
def ticker(self, parameter):
|
||||
"""
|
||||
Refresh the Crypto Ticker channels,
|
||||
Refresh the crypto Ticker channels,
|
||||
this is very specific to my use, you can disable this in the config.
|
||||
"""
|
||||
|
||||
|
|
Loading…
Reference in New Issue