Python with Google App Engine. AttributeError: the 'module' object does not have an "HTTPSHandler" error message

Im new for Python and Im who are currently following Head First Python. I am trying to apply an example exercise, but Im stuck with an error from GAE. I installed both Python 2.5 and GAE on my Kubuntu 10.10 SO

First I create a folder called "mygaetest" with sayhello.py and app.yaml files inside. Since there is no GUI for Linux, I run my GAEP file from the command line as follows:

python2.5 google_appengine / dev_appserver.py home / LUCAS / workspace / Python / Chapter 10 / SRC / mygaetest /

But then the following error is displayed:

Traceback (last last call):

Google_appengine / dev_appserver.py file, line 78, in

run_file(__file__, globals())

"Google_appengine/dev_appserver.py", 74, run_file

execfile(script_path, globals_)

"/home/lucas/Desarrollo/Python/App

/google_appengine/Google/AppEngine//dev_appserver_main.py", 118,

from google.appengine.tools import appcfg

"/home/lucas/Desarrollo/Python/App

/google_appengine/Google/AppEngine//appcfg.py", 68,

from google.appengine.tools import appengine_rpc

"/home/lucas/Desarrollo/Python/App

/google_appengine/Google/AppEngine//appengine_rpc.py", 27,

import fancy_urllib

"/home/lucas/Desarrollo/Python/App

/google_appengine/Library/fancy_urllib/fancy_urllib/ INIT.py", 341,

class FancyHTTPSHandler(urllib2.HTTPSHandler):

AttributeError: 'module' "HTTPSHandler"

- , , ?

.

+5
3

Python, App Engine Stack Overflow!

Python, -, SSL. , .

http://code.google.com/p/googleappengine/issues/detail?id=19

+2

I got this error after upgrading Mac OSX to 10.10 (Yosemite), I needed a new python build 2.7:

$ brew update && brew upgrade python
==> Upgrading 1 outdated package, with result:
python 2.7.8_2
==> Upgrading python
...
==> Summary
/usr/local/Cellar/python/2.7.8_2: 4777 files, 76M
0
source

All Articles