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.