This commit is contained in:
aaron 2024-07-24 17:14:51 +08:00
parent 69dac8e5c2
commit 48668406f2
2 changed files with 1 additions and 3 deletions

View File

@ -14,4 +14,4 @@ def send_message(text, isAtAll = False):
"isAtAll": isAtAll "isAtAll": isAtAll
} }
} }
print(requests.post(url, json=formData).json()) print(requests.post(url, json=formData, verify=False).json())

View File

@ -19,8 +19,6 @@ times = ["00:00", "04:00", "08:00", "12:00", "16:00", "20:00"]
for t in times: for t in times:
schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h') schedule.every().day.at(t).do(vegas.run_crypto, interval = '4h')
version = 'V1.5' version = 'V1.5'
print(f'Running... {version}') print(f'Running... {version}')
while True: while True: