timwie / aio-overpass

Async client for the Overpass API
https://pypi.org/project/aio-overpass/
MIT License
4 stars 1 forks source link

Make POST requests instead of GET #10

Closed Twixes closed 9 months ago

Twixes commented 9 months ago

Great library! Thanks for making it. I've only run into a problem with larger queries: the Overpass server returns code 414 when the GET URL exceeds a few kilobytes. This is not a problem with POST requests to that same API, so it would be great to switch to that.

timwie commented 9 months ago

That's nice to hear, glad it's of use to you. Thanks for reporting this, that's much better indeed.

I will put a release out with the changes and then close this issue.

timwie commented 9 months ago

Fixed in 0.12.1

Twixes commented 9 months ago

Wow, that was fast, thank you!