3

首先让我说我认为这实际上行不通,但是,在我放弃引入这个库的努力之前,我想确定一下。所以我使用 easy_install 添加了一个我在 Github 上找到的 API 库。我希望在我的 appengine 应用程序中使用它。我编写了一个简单的测试处理程序,它将创建模块主类的一个实例并打印一个请求。我的 dev_appserver 将启动,但不会加载 MainPage。 任何建议表示赞赏!

错误是:

ERROR    2013-06-21 04:24:00,450 wsgi.py:219] 
Traceback (most recent call last):
  File "/home/devin/google_appengine/google/appengine/runtime/wsgi.py", line 196, in Handle
    handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
  File "/home/devin/google_appengine/google/appengine/runtime/wsgi.py", line 255, in     _LoadHandler
    handler = __import__(path[0])
  File "/home/devin/Projects/appengine/hackTheMidwest/perfectpet4me.py", line 4, in <module>
    import petfinder
ImportError: No module named petfinder
INFO     2013-06-21 04:24:00,455 server.py:593] default: "GET / HTTP/1.1" 500 -

这是我的主文件的代码:

import os
import urllib

import petfinder # THE INSTALLED LIBRARY

from google.appengine.api import users

import jinja2
import webapp2


JINJA_ENVIRONMENT = jinja2.Environment(
    loader=jinja2.FileSystemLoader(os.path.dirname(__file__)),
    extensions=['jinja2.ext.autoescape'])

class MainPage(webapp2.RequestHandler):

    def get(self):
        template = JINJA_ENVIRONMENT.get_template('templates/index.html')
        self.response.write(template.render())

class TestPage(webapp2.RequestHandler):

    def get(self):
        # Instantiate the client with your credentials.
        api = petfinder.PetFinderClient(api_key='#####', api_secret='#####')
        pet = api.pet_getrandom()
        self.response.write(pet['name'])


application = webapp2.WSGIApplication([
    ('/', MainPage),
    ('/test', TestPage),
], debug=True)

还有我的 app.yaml:

application: ASDFASDFASDF
version: 1
runtime: python27
api_version: 1
threadsafe: true

- url: /.*
  script: perfectpet4me.application

libraries:
- name: webapp2
  version: latest
- name: jinja2
  version: latest
4

2 回答 2

2

这就是我为谷歌应用引擎构建的 gaenv 工具的确切目的。以下是有关更多详细信息的博客文章:http: //blog.altlimit.com/2013/06/google-app-engine-virtualenv-tool-that.html

但这里是总结:你安装它:

pip install gaenv
cd /to/your/project
gaenv

确保您将第三方包放入 requirements.txt 并安装,它会创建一个符号链接,因此它将与它一起上传,因为 appengine appcfg 遵循符号链接。

您还可以阅读 github 上有关一切工作原理的代码: https ://github.com/faisalraja/gaenv

于 2013-06-22T06:21:21.887 回答
2

你不能这样做。在应用程序的目录中包含您的第三方库并在应用程序中使用它。在应用引擎中部署时,它将与您的应用程序一起上传。

于 2013-06-21T04:58:48.820 回答