Udacity CS253 using GAE, Handler Errors

439 Views Asked by At

I have run into a roadblock. It so happens another student, Ahmad, has run into a largely similar roadblock at the same time. So far, we don't have an answer from the Udacity forums, so I thought I would cross post here in hopes of getting help sooner rather than later. The problems comes up here: Web Development - Lesson 2 - More Handlers. (The link might not work if you aren't logged-in).

Up until this point, both of us were getting it right and making progress, but from here on, things shut down and we are both stumped. Here is my last post back to Ahmad:

I compared your log with mine in MS Word. When you get rid of things like time of day, font, and file path, there are a couple of differences. We both got:

WARNING api_server.py:331] Could not initialize images API; you are likely missing the Python "PIL" module.

And

ERROR wsgi.py:262]

Our tracebacks are nearly identical

Traceback (most recent call last): File "C:\Program Files\ (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 239, in Handle handler = _config_handle.add_wsgi_middleware(self._LoadHandler()) File "C:\Program Files\ (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 298, in _LoadHandler handler, path, err = LoadObject(self._handler) File "C:\Program Files\ (x86)\Google\google_appengine\google\appengine\runtime\wsgi.py", line 84, in LoadObject obj = import(path[0])

but we have different form actions (/<form action ="/testform, TestHandler)],">

One thing I have that you don’t is

WARNING 2013-12-09 18:18:41,795 simple_search_stub.py:1018] Could not read search indexes from c:\users\appdata\local\temp\appengine.udacity7676\search_indexes

So where do we go from here? I don’t know, but I do have a lot of questions I hope someone can and will answer:

  1. If this PIL module is so crucial, why is it a separate download? And why didn’t GAE tell us that before now?
  2. Why did we both succeed with the Udacity quizzes until this point? Put another way, what is so different about this exercise that suddenly makes PIL crucial?
  3. I looked at PIL on the app engine site. https://developers.google.com/appengine/docs/python/images/ It is an image manipulator, and the example they give is with the gae icon. That makes me wonder if our progress on this lesson has been shipwrecked by someone requiring the icon be part of the result? As near as I can tell, there are no images in this exercise, and I don’t know of ANY app where the lack of a favicon makes the whole thing crash. If that’s what’s going on, that’s just crazy and wasteful.
  4. I went to the PIL download site. Turns out the installer not only expects to find Python at the default location [c:\python27], there is NO WAY to give it another path. I tried – many times. Since my python is not at the default location, either I am out of luck or I have to reinstall it there, and start all over again. How nice and thoughtful of these engineers to be so flexible in working with newbies like us.
  5. I am mindful of the fact that you said you had in fact already installed PIL, but you got this error message anyway. So what do we do with that?
  6. I also compared the code in the lesson with the code I have for this exercise.
  7. I have MainHandler, they have MainPage, which I had noticed before, but I don’t think this is significant. Besides, mine came with this name, I didn’t create it.
  8. The triple quotes seem to be spaced differently, but I’m pretty sure I heard elsewhere that spacing doesn’t matter, so that shouldn’t be a problem.
  9. I don’t have the content-type line, the instructor commented his out.
  10. He adds out, as in self.response.out.write(form). This was not in my default files. I just have self.response.write(form).
2

There are 2 best solutions below

13
On
INFO     2013-12-15 21:18:40,151 module.py:617] default: "GET / 

HTTP/1.1" 500 -
INFO     2013-12-15 21:18:40,190 module.py:617] default: "GET 

/favicon.ico HTTP/1.1" 304 -
ERROR    2013-12-16 03:18:48,500 wsgi.py:262] 

Traceback (most recent call last):

  File "C:\...\appengine\runtime\wsgi.py", line 239, in Handle

    handler = _config_handle.add_wsgi_middleware(self._LoadHandler())

  File "C:\...\appengine\runtime\wsgi.py", line 298, in _LoadHandler

    handler, path, err = LoadObject(self._handler)

  File "C:\...\appengine\runtime\wsgi.py", line 84, in LoadObject

    obj = __import__(path[0])

  File "C:\...\udacity7676\main.py", line 18, in <module>

    ('/testform', TestHandler)],

TypeError: 'tuple' object is not callable

INFO     2013-12-15 21:18:48,512 module.py:617] default: "GET / 

HTTP/1.1" 500 -

I'm guessing the handler names don't line up and that's the problem, but I'd rather get your feedback before plunging ahead blindly. I would also guess the tuple is not callable for the same reasons. But I don't recall any instructions to modify wsgi.py. I would also guess that the favicon error goes to this PIL issue.

1
On

The (/<form action ="/testform, TestHandler)],"> does not look right.
It should be <form action="/testform"> only.

The PIL library is not at all necessary for the GAE (in your case at the least). So, it's just a warning which you can ignore. (It has nothing to do with your errors)

The MainHandler replaced with MainPage is not at all a problem if you have used the correct Handler class in the app declaration at the end. Something like,

app = webapp2.WSGIApplication([('/', MainPage),
                               ('/testform', TestHandler)],
                              debug=True)

Also, the spacing doesn't matter, but the block in which you place the triple-quoted strings matters. e.g.

form = 
"""
<form action="/testform">
    <input name="q"> <input type="submit">
</form>
"""

would give error, but,

form =       """
<form action="/testform">
    <input name="q"> <input type="submit">
</form>
"""

this would work fine.

As for the actual problem you two are facing, I can't help you if I can't have a look at the code. If you want the discussion to continue on the Udacity forums, it's fine by me, but then, post a link & I will see what I can do.

Update - Looks like you missed adding commas to separate the tuples in your URL-Handlers declaration. Your code looks like

app = webapp2.WSGIApplication([('/', MainPage)
                               ('/testform', TestHandler)]
                              debug=True)

while it should be

app = webapp2.WSGIApplication([('/', MainPage), # <-- comma at the end of line
                               ('/testform', TestHandler)], # <-- comma before hash
                              debug=True)