there is a simple code,which can run locally ,and get three csv  file in  c:/<br>#coding:utf-8<br>import urllib<br>import re<br>import os<br>exchange=['NASDAQ','NYSE','AMEX']<br>for down in exchange:<br>
    myfile=open('c:/'+down,'w')<br>    url='<a href="http://www.nasdaq.com/screening/companies-by-industry.aspx?exchange='+down+'&render=download">http://www.nasdaq.com/screening/companies-by-industry.aspx?exchange='+down+'&render=download</a>'<br>
    file=urllib.urlopen(url).read()<br>    myfile.write(file)<br>    print 'ok',down<br>    myfile.close()<br><br>i want to upload it onto my  google app (i have one google app account)and let it run on 4 o'clock  (with cron) ,and  let the downloaded data on my  google app,<br>
how to do ? <br>