I am trying to add BigQuery to a Django-AppEngine project and I am finding a lot of problems in doing that since the google library for BigQuery use a package named google
and this folder is already in use for AppEngine purposes. What I find now is that, if I install BigQuery, it will overwrite this package and then nothing works!
Is there maybe someone who faced this problem before and has any idea how to solve this?
It is some way to combine existing folders using pip or something else?
Thanks!!
Possible Solution:
For those who are facing the same problem, I was able to find a solution which was not too bad. Just creating an appengine_config.py
file and adding them there:
from google.appengine.ext import vendor
vendor.add('sitepackages/prod')
...but still looking for a better solution.
*note: all my third party libraries are placed there instead of in a lib
folder like Google says.