2023-11-06 00:31:58 +00:00
|
|
|
def parse_listing_json_entry(d):
|
2023-11-18 12:30:04 +02:00
|
|
|
id = d["identifier"]
|
2023-11-06 00:31:58 +00:00
|
|
|
# address = d['address']
|
2023-11-18 12:30:04 +02:00
|
|
|
propertyType = d["propertyType"]
|
|
|
|
|
price = d["price"]
|
|
|
|
|
latitude = d["latitude"]
|
|
|
|
|
longitude = d["longitude"]
|
|
|
|
|
updated_date = d["updateDate"]
|