Spaces:
Running
Running
Commit
·
e676aa7
1
Parent(s):
fe0375c
Update main.py
Browse files
main.py
CHANGED
@@ -18,8 +18,10 @@ with open('live_urls.pkl', 'rb') as f:
|
|
18 |
with open('active_urls.pkl', 'rb') as f:
|
19 |
live_urls = pkl.load(f)
|
20 |
|
21 |
-
|
22 |
-
|
|
|
|
|
23 |
|
24 |
live_urls = [i for i in live_urls if i not in exceptions]
|
25 |
|
@@ -68,8 +70,12 @@ def proxy(url):
|
|
68 |
except:
|
69 |
print(f'Redirecting')
|
70 |
exceptions.append(url)
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
|
|
73 |
return send_file('static/error.png', mimetype='image/png')
|
74 |
|
75 |
|
|
|
18 |
with open('active_urls.pkl', 'rb') as f:
|
19 |
live_urls = pkl.load(f)
|
20 |
|
21 |
+
from io import BytesIO
|
22 |
+
url = 'https://storage.googleapis.com/bmllc-data-bucket/exceptions.pkl'
|
23 |
+
response = requests.get(url)
|
24 |
+
exceptions = pickle.loads(BytesIO(response.content).read())
|
25 |
|
26 |
live_urls = [i for i in live_urls if i not in exceptions]
|
27 |
|
|
|
70 |
except:
|
71 |
print(f'Redirecting')
|
72 |
exceptions.append(url)
|
73 |
+
byte_stream = BytesIO()
|
74 |
+
pickle.dump(exceptions, byte_stream)
|
75 |
+
byte_stream.seek(0)
|
76 |
+
url = 'https://storage.googleapis.com/bmllc-data-bucket/exceptions.pkl'
|
77 |
+
response = requests.put(url, data=byte_stream.read())
|
78 |
+
print(response)
|
79 |
return send_file('static/error.png', mimetype='image/png')
|
80 |
|
81 |
|