I am using webpy framefork. I want to serve static file on one of requests. Is there special method in webpy framework or I just have to read and return that file?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 7 down vote accepted

If you are running the dev server (without apache):

Create a directory (also known as a folder) called static in the location of the script that runs the web.py server. Then place the static files you wish to serve in the static folder.

For example, the URL http://localhost/static/logo.png will send the image ./static/logo.png to the client.

Reference: http://webpy.org/cookbook/staticfiles


Update. If you really need to serve a static file on / you can simply use a redirect:

#!/usr/bin/env python

import web

urls = (
  '/', 'index'
)

class index:
    def GET(self):
        # redirect to the static file ...
        raise web.seeother('/static/index.html')

app = web.application(urls, globals())

if __name__ == "__main__": app.run()
link|improve this answer
thats serves files in /static path only, I need to serve index.html on request with path / – codez Jan 20 '11 at 19:26
@codez: Updated my answer. – miku Jan 20 '11 at 19:34
feedback

I struggled with this for the last couple of hours... Yuck!

Found two solutions which are both working for me... 1 - in .htaccess add this line before the ModRewrite line:

RewriteCond %{REQUEST_URI} !^/static/.*

This will make sure that requests to the /static/ directory are NOT rewritten to go to your code.py script.

2 - in the code.py add a static handler and a url entry for each of several directories:

urls = (
    '/' , 'index' ,
    '/add', 'add' ,
    '/(js|css|images)/(.*)', 'static', 
    '/one' , 'one'
    )

class static:
    def GET(self, media, file):
        try:
            f = open(media+'/'+file, 'r')
            return f.read()
        except:
            return '' # you can send an 404 error here if you want

Note - I stole this from the web.py google group but can't find the dang post any more!

Either of these worked for me, both within the templates for web.py and for a direct call to a web-page that I put into "static"

link|improve this answer
feedback

I don't recommend serving static files with web.py. You'd better have apache or nginx configured for that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.