You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2018. It is now read-only.
normally it works fine but for urls os.path.join is not the best either since on Windows systems os.path.join will join using backslash \ which won't be a valid url. As consequence on windows we get exception like this: Unable to find the server at www.odesk.com\api
Isn't it better to use urlparse.urljoin (and urllib.parse.urljoin for python 3) for this?
Otherwise it should be written somewhere in documentation that Windows is not supported.