Skip to content

v0.15.2

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Sep 14:22
· 245 commits to main since this release

Release Notes

New Features

  • Added RESTfulURLs for FEMA's National Flood Hazard Layer (NFHL) service. Contributed by Fernando Aristizabal. (62{.interpreted-text role="pull_ogc"})
  • Now, RetrySession can be used as a context manager. This is useful for closing the session after using it. For example:
from pygeoogc import RetrySession

with RetrySession() as session:
    r = session.get("https://httpbin.org/get").json()

Internal Changes

  • Improve the example in the docstring of traverse_json function.
  • Improve exception handling in the ArcGISRESTful class and return a more informative error message.