Spaces:
Running
Running
Commit
·
eb21d24
1
Parent(s):
92f293d
Update main.py
Browse files
main.py
CHANGED
@@ -91,11 +91,13 @@ def index():
|
|
91 |
if 'current_feed' in session and request.args.get('new', 'false') == 'false':
|
92 |
feed = session['current_feed']
|
93 |
else:
|
94 |
-
|
|
|
|
|
|
|
|
|
95 |
session['current_feed'] = feed
|
96 |
|
97 |
-
#url = feed_dict[feed]['url']
|
98 |
-
url = live_urls[feed]
|
99 |
ip = ''.join(url.split('//')[-1]).split(':')[0]
|
100 |
info = get_ip_info(ip)
|
101 |
country = (pycountry.countries.get(alpha_2=info['country']).name).lower()
|
|
|
91 |
if 'current_feed' in session and request.args.get('new', 'false') == 'false':
|
92 |
feed = session['current_feed']
|
93 |
else:
|
94 |
+
while True:
|
95 |
+
feed = random.randint(0, len(live_urls) - 1)
|
96 |
+
url = live_urls[feed]
|
97 |
+
if url not in session['exception_urls']:
|
98 |
+
break
|
99 |
session['current_feed'] = feed
|
100 |
|
|
|
|
|
101 |
ip = ''.join(url.split('//')[-1]).split(':')[0]
|
102 |
info = get_ip_info(ip)
|
103 |
country = (pycountry.countries.get(alpha_2=info['country']).name).lower()
|