hra commited on
Commit
cf0d006
·
1 Parent(s): 1f67127

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,7 +84,7 @@ def getstuff(openapikey):
84
  for i in range(len(mainlistofanswers)):
85
  each=mainlistofanswers[i]
86
  each=each.replace("The top technologies mentioned are ","").replace("The technologies mentioned are ","")
87
- each=each.replace(":","").replace(" and "," ").replace("and "," ").replace(" and"," ").replace(" the "," ").replace("the "," ").replace(" the"," ").strip()
88
  for item in each.split(","):
89
  newlistoftech.append(item.strip())
90
  newlistofcompanies.append(i)
@@ -175,7 +175,7 @@ def getstuff(openapikey):
175
 
176
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'wb') as file:
177
  for line in textlist:
178
- file.write(f"{line}\n".encode())
179
 
180
  print('Came here 8')
181
 
 
84
  for i in range(len(mainlistofanswers)):
85
  each=mainlistofanswers[i]
86
  each=each.replace("The top technologies mentioned are ","").replace("The technologies mentioned are ","")
87
+ each=each.replace(":","").replace(" and ",",").replace("and ",",").replace(" and",",").replace(" the "," ").replace("the "," ").replace(" the"," ").strip()
88
  for item in each.split(","):
89
  newlistoftech.append(item.strip())
90
  newlistofcompanies.append(i)
 
175
 
176
  with fs.open('trends_chrome_extension_bucket/lastradartext.txt', 'wb') as file:
177
  for line in textlist:
178
+ file.write(f"{line}\n")
179
 
180
  print('Came here 8')
181