Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	Update app.py
Browse files
    	
        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:
         | 
|  | |
| 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:
         |