Google App engine documentation states that it is possible to upload and use third party libraries provided they written in pure Python.
What are the steps I need to take to do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What I did is created a file called fix_path.py in my root directory that looks like this:
Then I created a lib directory, and drop the module in there.
For example, I use WTForms. My file structure looks like this.
when I am ready to call it from my somefile script
here is this example in my github source. checkout fix_path.py for setup and views.py for usage.