We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40f1828 commit fb35f93Copy full SHA for fb35f93
examples/readme_example.py
@@ -9,7 +9,7 @@
9
10
api = overpass.API()
11
response = api.get('node["name"="Salt Lake City"]')
12
-print(response)
13
-print [(
14
- feature['properties']['name'],
15
- feature['id']) for feature in response["features"]]
+print([(
+ feature['id'],
+ feature['properties']['name'])
+ for feature in response['features']])
0 commit comments