0

Here is my import libraries in my python code which i hosted on heroku

import os
from flask import Flask, render_template
import sys, httplib2, json;

Its shows error ImportError: No module named httplib2?? Can any tell me why is it happening and if any way to correct it??

iJade
  • 23,144
  • 56
  • 154
  • 243

1 Answers1

3

Do you have the httplib2 module installed?

Try pip install httplib2

chenaren
  • 2,090
  • 1
  • 19
  • 24