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
When I try to run it, it says: "Cannot download data."
Maybe there has been an update in urllib3.
Changing osm/osm_getter.py lin 74 from result = pool_manager.request("GET", address, parameters) to result = pool_manager.request("GET", address, fields=parameters) fixed it for me
The text was updated successfully, but these errors were encountered:
Oh, I see, there is new syntax in urllib3 version 2 for request() function and I have urllib3>=1.25.6 instead of urllib3~=1.25.6 in requirements.txt file. I will fix that (probably not upgrading to version 2 because of @fazalmajid comment).
@mfbehrens99 Could you please create a pull request, or send me a patch, or at least provide your name/email so that I can apply the patch in your name?
@enzet , would it be possible to carry on with this fix? I've just had the same issue.
I see there is a PR handling this in #157.
With that fix applied, everything seems to work fine.
When I try to run it, it says: "Cannot download data."
Maybe there has been an update in urllib3.
Changing osm/osm_getter.py lin 74 from
result = pool_manager.request("GET", address, parameters)
toresult = pool_manager.request("GET", address, fields=parameters)
fixed it for meThe text was updated successfully, but these errors were encountered: