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.

my url is: "http://localhost:8080/i/agt0b3R0eXN3b3JsZHIQCxIJSW1hZ2VCbG9iGIUDDA.jpg" and I just want the "agt0b3R0eXN3b3JsZHIQCxIJSW1hZ2VCbG9iGIUDDA" part.

my app.yaml looks like:

handlers:
- url: /i/.*
  script: static_images.py

statc_images.py:

class StaticImage(webapp.RequestHandler):
    def get(self):
        image_blob_key = db.Key(self.request.get('')) # here I need the blob_key from url, in this case is "agt0b3R0eXN3b3JsZHIQCxIJSW1hZ2VCbG9iGIUDDA"

        image_blob = db.get(image_blob_key)

        if image_blob:
            self.response.headers['Content-Type'] = 'image/jpeg'
            self.response.out.write(image_blob.data)
        else:
            self.response.out.write("Image not available")

def main():
    app = webapp.WSGIApplication([('/i/(\d+)\.jpg', StaticImage)], debug=True) # im not pretty sure this is good: '/i/(\d+)\.jpg'
    run_wsgi_app(app)

if __name__ == "__main__":
    main()

thanks a lot! ;)

share|improve this question
1  
Belongs on stackoverflow.com... – kafuchau Nov 4 '10 at 16:50

migrated from webapps.stackexchange.com Nov 4 '10 at 19:59

1 Answer

up vote 3 down vote accepted

I think you are pretty close. Try this:

class StaticImage(webapp.RequestHandler):
    def get(self, blob_key):
        image_blob = ImageModel.get(blob_key)
        # if you want to use db.get you could.

        if image_blob:
            self.response.headers['Content-Type'] = 'image/jpeg'
            self.response.out.write(image_blob.data)
        else:
            self.response.out.write("Image not available")

def main():
    app = webapp.WSGIApplication([('/i/(.*)\.jpg', StaticImage)], debug=True)
    run_wsgi_app(app)

if __name__ == "__main__":
    main()
share|improve this answer
2  
You might want to list the differences, for clarity: Parenthesize the relevant part of the URL regular expression, and add a parameter to the get method to accept the value of the subexpression. – Nick Johnson Nov 4 '10 at 23:43

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.