Using Httplib2 on Python Appengine

后端 未结 4 1731
攒了一身酷
攒了一身酷 2021-01-04 10:56

Why am I getting this error when running my application which is trying to OAuth with Foursquare?

import httplib2
ImportError: No module named httplib2
         


        
4条回答
  •  旧时难觅i
    2021-01-04 11:28

    Add httplib2 as a third party library as documented here:

    https://cloud.google.com/appengine/docs/python/tools/libraries27#vendoring

    Install with:

    pip install -t lib httplib2
    

提交回复
热议问题