forked from breakdowns/slam-mirrorbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
alive.py
31 lines (26 loc) · 752 Bytes
/
alive.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Implement By - @anasty17 (https://github.com/breakdowns/slam-mirrorbot/commit/0bfba523f095ab1dccad431d72561e0e002e7a59)
# (c) https://github.com/breakdowns/slam-mirrorbot
# All rights reserved
import time
import requests
import os
from dotenv import load_dotenv
load_dotenv('config.env')
try:
BASE_URL = os.environ.get('BASE_URL_OF_BOT', None)
if len(BASE_URL) == 0:
BASE_URL = None
except KeyError:
BASE_URL = None
try:
IS_VPS = os.environ.get('IS_VPS', 'False')
if IS_VPS.lower() == 'true':
IS_VPS = True
else:
IS_VPS = False
except KeyError:
IS_VPS = False
if not IS_VPS and BASE_URL is not None:
while True:
time.sleep(1000)
status = requests.get(BASE_URL).status_code