From 30e80bf261f1218bcdc5bdd80d70bc7ddadd7cf4 Mon Sep 17 00:00:00 2001 From: KevinLage <43577910+KevinLage@users.noreply.github.com> Date: Mon, 13 Jan 2020 21:58:46 +0100 Subject: [PATCH] fixed a bug --- YouTube Livestream Botter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/YouTube Livestream Botter.py b/YouTube Livestream Botter.py index fbc96d2..fc62dd6 100644 --- a/YouTube Livestream Botter.py +++ b/YouTube Livestream Botter.py @@ -56,6 +56,7 @@ def update(self): while True: url = "https://api.proxyscrape.com/?request=getproxies&proxytype=http&timeout=10000&ssl=yes" r = requests.get(url) + self.splited = r.text.split("\r\n") #scraping and splitting proxies time.sleep(600) @@ -97,7 +98,7 @@ def bot(): pass - +time.sleep(7) maxthreads = int(input("How many Threads? Recommended: 500 - 1000\n")) threading.Thread(target=a.printservice).start()