Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -40,10 +40,11 @@ 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('
|
| 45 |
handler.write(img_data)
|
| 46 |
-
return '
|
| 47 |
|
| 48 |
|
| 49 |
def getstuff(openapikey):
|
|
|
|
| 40 |
handler.write(img_data)
|
| 41 |
|
| 42 |
def getlastimage():
|
| 43 |
+
print('Came into getlastimage')
|
| 44 |
img_data = requests.get('https://storage.googleapis.com/trends_chrome_extension_bucket/lasttechradar.png').content
|
| 45 |
+
with open('lasttechradar1.png', 'wb') as handler:
|
| 46 |
handler.write(img_data)
|
| 47 |
+
return 'lasttechradar1.png'
|
| 48 |
|
| 49 |
|
| 50 |
def getstuff(openapikey):
|