Hi,
basestring is not defined in the client.py file if you use python3.
Workaround:
open client.py and add after line 14 the line: basestring = str
After editing it should look like the following lines.
12: else:
13: from http.client import responses as HTTP_CODES
14 : from urllib.parse import urlparse
15: basestring = str