Created
August 27, 2025 18:42
-
-
Save psd/02ae9427810844e5c3b2316b06fecf00 to your computer and use it in GitHub Desktop.
Dump listed buildings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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