BraydenMoore commited on
Commit
e676aa7
·
1 Parent(s): fe0375c

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +10 -4
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
- with open('exceptions.pkl', 'rb') as f:
22
- exceptions = pkl.load(f)
 
 
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
- with open('exceptions.pkl', 'wb') as f:
72
- pkl.dump(exceptions, f)
 
 
 
 
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