Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -87,7 +87,7 @@ def getstuff(openapikey):
|
|
87 |
each=each.replace("The top technologies mentioned are ","").replace("The technologies mentioned are ","")
|
88 |
each=each.replace(":","").replace(" and ",",").replace("and ",",").replace(" and",",").replace(" the "," ").replace("the "," ").replace(" the"," ").strip()
|
89 |
for item in each.split(","):
|
90 |
-
if
|
91 |
newlistoftech.append(item.strip())
|
92 |
newlistofcompanies.append(i)
|
93 |
tech_df=pd.DataFrame()
|
|
|
87 |
each=each.replace("The top technologies mentioned are ","").replace("The technologies mentioned are ","")
|
88 |
each=each.replace(":","").replace(" and ",",").replace("and ",",").replace(" and",",").replace(" the "," ").replace("the "," ").replace(" the"," ").strip()
|
89 |
for item in each.split(","):
|
90 |
+
if item!='':
|
91 |
newlistoftech.append(item.strip())
|
92 |
newlistofcompanies.append(i)
|
93 |
tech_df=pd.DataFrame()
|