Hello

same issue with gae 1.3.7 and google-app-engine-django helper
http://code.google.com/p/google-app-engine-django/

looking in dev_appserver.py you will find

EXTRA_PATHS = [
  DIR_PATH,
  os.path.join(DIR_PATH, 'lib', 'antlr3'),
  os.path.join(DIR_PATH, 'lib', 'django'),
  os.path.join(DIR_PATH, 'lib', 'fancy_urllib'),
  os.path.join(DIR_PATH, 'lib', 'ipaddr'),
  os.path.join(DIR_PATH, 'lib', 'webob'),
  os.path.join(DIR_PATH, 'lib', 'yaml', 'lib'),
]

and looking in __init__.py in appengine_django directory you will find
(in def Load_Sdk(): )

  # Add the SDK and the libraries within it to the system path.
    EXTRA_PATHS = [
        SDK_PATH,
        os.path.join(SDK_PATH, 'lib', 'antlr3'),
        os.path.join(SDK_PATH, 'lib', 'django'),
        os.path.join(SDK_PATH, 'lib', 'ipaddr'),
        os.path.join(SDK_PATH, 'lib', 'webob'),
        os.path.join(SDK_PATH, 'lib', 'yaml', 'lib'),
    ]

then i just added  os.path.join(SDK_PATH, 'lib', 'fancy_urllib') to
the EXTRA_PATHS resulting in:

  # Add the SDK and the libraries within it to the system path.
    EXTRA_PATHS = [
        SDK_PATH,
        os.path.join(SDK_PATH, 'lib', 'antlr3'),
        os.path.join(SDK_PATH, 'lib', 'django'),
        os.path.join(SDK_PATH, 'lib', 'fancy_urllib'),
        os.path.join(SDK_PATH, 'lib', 'ipaddr'),
        os.path.join(SDK_PATH, 'lib', 'webob'),
        os.path.join(SDK_PATH, 'lib', 'yaml', 'lib'),
    ]

and it seems manage.py is working.

BTW: It seems to be 2 differents projects (helpers) for django on
app_engine:
http://code.google.com/p/google-app-engine-django/
and
http://code.google.com/p/django-gae2django/

is there a supported project by google? or are they both independents
projects?

I'm trying first one as found in docs articles
http://code.google.com/intl/en/appengine/articles/appengine_helper_for_django.html

thx

On 26 ago, 00:58, Jairo Vasquez <[email protected]> wrote:
> Hi,
>
> I tried the 1.3.6 version when it was released but had to switch back to
> 1.3.5 due to an issue with remote_api: "ImportError: No module
> named fancy_urllib"
>
> I checked again and the bug is not resolved. I'm using the mac launcher?
>
> Any status about it?
>
> --
> Jairo Vasquezwww.mentez.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to