Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -33,12 +33,17 @@ 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 |
|
37 |
img_data = requests.get('https://storage.googleapis.com/trends_chrome_extension_bucket/lasttechradar.png').content
|
38 |
with open('lasttechradar.png', 'wb') as handler:
|
39 |
handler.write(img_data)
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
42 |
|
43 |
|
44 |
def getstuff(openapikey):
|
@@ -198,7 +203,7 @@ with gr.Blocks() as demo:
|
|
198 |
btn = gr.Button("Refresh")
|
199 |
with gr.Row() as row:
|
200 |
with gr.Column():
|
201 |
-
output_image = gr.components.Image(label="Tech Radar",value=
|
202 |
with gr.Column():
|
203 |
outputMck = gr.Textbox(placeholder=value1, lines=1,label='McKinsey View',every=60)
|
204 |
outputBcg = gr.Textbox(placeholder=value2, lines=1,label='BCG View',every=60)
|
|
|
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:
|
40 |
handler.write(img_data)
|
41 |
|
42 |
+
def getlastimage():
|
43 |
+
img_data = requests.get('https://storage.googleapis.com/trends_chrome_extension_bucket/lasttechradar.png').content
|
44 |
+
with open('lasttechradar.png', 'wb') as handler:
|
45 |
+
handler.write(img_data)
|
46 |
+
return 'lasttechradar.png'
|
47 |
|
48 |
|
49 |
def getstuff(openapikey):
|
|
|
203 |
btn = gr.Button("Refresh")
|
204 |
with gr.Row() as row:
|
205 |
with gr.Column():
|
206 |
+
output_image = gr.components.Image(label="Tech Radar",value=getlastimage(),every=60)
|
207 |
with gr.Column():
|
208 |
outputMck = gr.Textbox(placeholder=value1, lines=1,label='McKinsey View',every=60)
|
209 |
outputBcg = gr.Textbox(placeholder=value2, lines=1,label='BCG View',every=60)
|