There's an unsupported syntax in HttpLibrary init.py
is not supported in Python 3.6 (maybe other versions as well, not sure).
Updating to
works for Python 2.7 and above (maybe for lower versions of Python as well, not sure).
Also:
from urllib import urlparse
becomes
from urllib.parse import urlparse
and it's failing on importing livetest.
Tried from HttpLibrary import livetest but that's not working.
There's an unsupported syntax in HttpLibrary init.py
is not supported in Python 3.6 (maybe other versions as well, not sure).
Updating to
works for Python 2.7 and above (maybe for lower versions of Python as well, not sure).
Also:
from urllib import urlparsebecomes
from urllib.parse import urlparseand it's failing on importing
livetest.Tried
from HttpLibrary import livetestbut that's not working.