The below command: ```python buildings = ox.buildings_from_place(place_name) ``` Is failing with the below error: ```python module 'osmnx' has no attribute 'buildings_from_place' ``` I had to use this instead: ```python buildings = ox.footprints_from_place(place_name) ``` **NOTE:** it seems `.buildings_from_place()` was removed in v10.
The below command:
Is failing with the below error:
I had to use this instead:
NOTE: it seems
.buildings_from_place()was removed in v10.