This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zipfile, urllib, csv, os, codecs | |
def get_items(url): | |
filename, headers = urllib.urlretrieve(url) | |
try: | |
with zipfile.ZipFile(filename) as zf: | |
csvfiles = [name for name in zf.namelist() | |
if name.endswith('.csv')] | |
for item in csvfiles: | |
with zf.open(item) as source: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// origin: http://www.google.com/support/forum/p/Chrome/thread?tid=1a37ccbdde5902fd&hl=en | |
javascript: | |
timeout=prompt("Set timeout [s]"); | |
current=location.href; | |
if(timeout>0) | |
setTimeout('reload()',1000*timeout); | |
else | |
location.replace(current); | |
function reload(){ |