Skip to content Skip to sidebar Skip to footer

How To Import Module PyImgur Python

I'm new in python, I've it installed in C:\ & I just started with GAE's Hello World app, I downloaded PyImgur have it installed via cmd python setup.py install but I get a err

Solution 1:

For modules on the Google App Engine servers, other than those in official third party libraries you have to upload them with your application code.

For local dev_appserver, they have to reside in your PYTHONPATH.

The safe way to resolve both is to place the desired module in your application directory, as the dev_appserver extends PYTHONPATH by it.


Solution 2:

You need to include the pyImgur source code in your app. Include the module in your app directory (the directory where your app.yaml lives), or one of its subdirectory.


Post a Comment for "How To Import Module PyImgur Python"