forked from souravrs999/FaucetCryptoBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbot.py
More file actions
27 lines (21 loc) · 618 Bytes
/
Copy pathbot.py
File metadata and controls
27 lines (21 loc) · 618 Bytes
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
from FaucetCryptoBot import FaucetCryptoBot
def faucet_bot():
bot = FaucetCryptoBot()
while True:
try:
bot.login_handler()
bot.get_user_balance()
bot.get_user_level()
bot.get_current_coin_rate()
bot.get_main_reward()
bot.get_ptc_ads()
bot.get_shortlink_ads()
# bot.get_achievements()
bot.sleep(10)
except Exception as e:
bot.error_handler(e)
bot.sleep(1)
except KeyboardInterrupt:
bot.quit()
if __name__ == "__main__":
faucet_bot()