Hey I am struggling to have a static file available for download using Python and Tornado on my server.
class templateHandler(tornado.web.RequestHandler):
def get(self):
self.write("""
<a href="/download"> Download </a>
""")
application = tornado.web.Application([
(r"/", MyFormHandler),
(r"/results", MyFormHandler),
(r"/multi", MyFileHandler),
(r"/upload",MyFileHandler),
(r'/download',tornado.web.StaticFileHandler,{'path':"L:/Template.csv"}),
(r'/template', templateHandler),
(r"/SFA",SFAHandler),
])
Can someone help me out. I am not 100% certain on how the file handler works. Thanks for your help!
EDIT: Here is the error message:
ERROR:root:Uncaught exception GET /download (10.18.4.160)
HTTPRequest(protocol='http', host='IPadress', method='GET', uri='/download', version='HTTP/1.1', remote_ip='IPaddress', body='', headers={'Connection': 'keep-alive', 'Accept-Language': 'en-US,en;q=0.5', 'Accept-Encoding': 'gzip, deflate', >'Referer': 'IPadress/template', 'Host': 'IPaddress', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'User-Agent': 'Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20100101 Firefox/17.0'})
Traceback (most recent call last):
File "WEB.PY LOCATION", line >988, in _execute
getattr(self, self.request.method.lower())(*args, **kwargs)
TypeError: get() takes at least 2 arguments (1 given)
ERROR:root:500 GET /download (IPaddress) 0.00ms
I'm thinking it has to do with StaticFileHandler.get expecting a path, usually it does not serve a single file, but instead serves a directory of files, and takes a filename i don't have time to dig into it right now but it sshould be something like
(r'/download/(.*)',tornado.web.StaticFileHandler,{'path':"L:/"}),
now if you go to
/download/Template.csv
it should serve it. Sorry I don't have time right now to look into source to confirm