Skip to content

Instantly share code, notes, and snippets.

@psd
Created August 27, 2025 18:42
Show Gist options
  • Select an option

  • Save psd/02ae9427810844e5c3b2316b06fecf00 to your computer and use it in GitHub Desktop.

Select an option

Save psd/02ae9427810844e5c3b2316b06fecf00 to your computer and use it in GitHub Desktop.
Dump listed buildings
import json
from esridump.dumper import EsriDumper
url = 'https://services-eu1.arcgis.com/ZOdPfBS3aqqDYPUQ/arcgis/rest/services/National_Heritage_List_for_England_NHLE_v02_VIEW/FeatureServer/0/'
dumper = EsriDumper(url, fields=None)
response = dumper._request("GET", url)
dumper.get_metadata()
for feature in dumper:
print(json.dumps(feature))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment