Spaces:
Running
Running
Commit
·
2ad6918
1
Parent(s):
19137a2
Update main.py
Browse files
main.py
CHANGED
@@ -30,7 +30,7 @@ def latlon_to_pixel(loc):
|
|
30 |
@app.route('/')
|
31 |
def index():
|
32 |
feed = random.randint(0, len(feed_dict) - 1)
|
33 |
-
url = feed_dict[feed]['url']
|
34 |
ip = ''.join(url.split('//')[-1]).split(':')[0]
|
35 |
info = get_ip_info(ip)
|
36 |
name = (info['city'] + ", " + info['region'] + ", " + pycountry.countries.get(alpha_2=info['country']).name).lower()
|
@@ -38,10 +38,16 @@ def index():
|
|
38 |
timezone = pytz.timezone(info['timezone'])
|
39 |
time = dt.datetime.now(timezone)
|
40 |
loc = info['loc']
|
41 |
-
print(info)
|
42 |
X, Y = latlon_to_pixel(info['loc'])
|
43 |
-
print(url)
|
44 |
return render_template('index.html', name=name, url=url, info=info, time=time, ip=ip, org=org, loc=loc, X=X, Y=Y)
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
if __name__ == '__main__':
|
47 |
app.run(host='0.0.0.0', port='7860', debug=True)
|
|
|
30 |
@app.route('/')
|
31 |
def index():
|
32 |
feed = random.randint(0, len(feed_dict) - 1)
|
33 |
+
url = feed_dict[feed]['url']
|
34 |
ip = ''.join(url.split('//')[-1]).split(':')[0]
|
35 |
info = get_ip_info(ip)
|
36 |
name = (info['city'] + ", " + info['region'] + ", " + pycountry.countries.get(alpha_2=info['country']).name).lower()
|
|
|
38 |
timezone = pytz.timezone(info['timezone'])
|
39 |
time = dt.datetime.now(timezone)
|
40 |
loc = info['loc']
|
|
|
41 |
X, Y = latlon_to_pixel(info['loc'])
|
|
|
42 |
return render_template('index.html', name=name, url=url, info=info, time=time, ip=ip, org=org, loc=loc, X=X, Y=Y)
|
43 |
|
44 |
+
@app.route('/proxy/<path:url>')
|
45 |
+
def proxy(url):
|
46 |
+
try:
|
47 |
+
req = requests.get(f'http://{url}', stream=True, timeout=10)
|
48 |
+
return Response(req.iter_content(chunk_size=10 * 1024), content_type=req.headers['content-type'])
|
49 |
+
except requests.exceptions.RequestException as e:
|
50 |
+
return f"An error occurred: {e}"
|
51 |
+
|
52 |
if __name__ == '__main__':
|
53 |
app.run(host='0.0.0.0', port='7860', debug=True)
|