forked from cory/tildefriends
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			247 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			247 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/python
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import urllib
							 | 
						||
| 
								 | 
							
								import json
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								data = json.load(urllib.urlopen('http://omahaproxy.appspot.com/all.json'))
							 | 
						||
| 
								 | 
							
								for os in data:
							 | 
						||
| 
								 | 
							
									for version in os['versions']:
							 | 
						||
| 
								 | 
							
										if version['channel'] == 'stable':
							 | 
						||
| 
								 | 
							
											print version['v8_version'], os['os']
							 |