- Fetching rightmove listing api - Memoizing query - Writing to sqlite database with sqlalchemy - Poetry dependencies
11 lines
245 B
Python
11 lines
245 B
Python
|
|
def parse_listing_json_entry(d):
|
|
id = d['identifier']
|
|
# address = d['address']
|
|
propertyType = d['propertyType']
|
|
price = d['price']
|
|
latitude = d['latitude']
|
|
longitude = d['longitude']
|
|
updated_date = d['updateDate']
|
|
|
|
|