hra commited on
Commit
e939db3
·
1 Parent(s): 5835805

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,7 +33,7 @@ print('Started')
33
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'rb') as file:
34
  data_old = file.read()
35
  print(data_old)
36
- value1,value2,value3,value4,value5,value6=str(data_old).split('SEPERATOR')
37
 
38
  img_data = requests.get('https://storage.googleapis.com/trends_chrome_extension_bucket/lasttechradar.png').content
39
  with open('lasttechradar.png', 'wb') as handler:
@@ -178,7 +178,7 @@ def getstuff(openapikey):
178
 
179
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'wb') as file:
180
  for line in textlist:
181
- file.write(f"{line}\n")
182
 
183
  print('Came here 8')
184
 
 
33
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'rb') as file:
34
  data_old = file.read()
35
  print(data_old)
36
+ value1,value2,value3,value4,value5,value6=str(data_old.decode()).split('SEPERATOR')
37
 
38
  img_data = requests.get('https://storage.googleapis.com/trends_chrome_extension_bucket/lasttechradar.png').content
39
  with open('lasttechradar.png', 'wb') as handler:
 
178
 
179
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'wb') as file:
180
  for line in textlist:
181
+ file.write(f"{line}\n".encode())
182
 
183
  print('Came here 8')
184