bogen
bogen

Reputation: 10432

How to add a library to to my Google App Engine project?

In response to this bug at Google I am planning to replace the webob library with the newest release, WebOb version 1.2.3, which is rumored to fix the bug. I have downloaded the project from their website, and just adding it to the project root does not fix the problem. The folder with the downloaded project is named "WebOb-1.2.3"

What needs to be done in App.yaml to include this newest version that i upload to the server?

I am running python.

Upvotes: 0

Views: 163

Answers (1)

Paul Collingwood
Paul Collingwood

Reputation: 9116

Typically you just copy the folder (e.g. /webob) to the root of your application directory, and as the version is not supported directly as yet don't include it in the app.yaml.

Upvotes: 2

Related Questions