On Tue, Aug 09, 2016 at 01:13:23PM +0200, Ola Lundqvist wrote: > Hi Chris > > After fiddling with this for a while I realize that there is a > python-requests package but there is also a phyton3-requests package. > After installing that it works just fine. > > I have now committed a change documenting this requirement at the top > of the script.
Since it is required we could do a:
try:
import requests
except ImportError:
sys.stderr.puts("You need to install python3-requests")
sys.exit(1)
