Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

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()
share|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

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"

share|improve this answer
Did you see some benefit to these methods over webpy.org/cookbook/staticfiles ? – dimo414 Jul 20 '12 at 14:51
I got this to work - I could not get other methods to work, so I guess that's an advantage ;-) I was working on a shared hosting account so that may have been some of my struggle. – tom stratton Jul 21 '12 at 17:06
1  
@tom - thanks! you saved me a couple hours with this post. – incognick Aug 1 '12 at 2:48
+1 - This seems like the right solution when you want to restrict access to the files you'll be serving. – Inaimathi Oct 11 '12 at 0:27
just as a warning, this will permit someone to request URLs like: /images/../../../../somefile_you_dont_want_anyone_to_see – Zach Dwiel Apr 26 at 21:03

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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