Initial commit: Rightmove fetch, database, caching, poetry etc.
- Fetching rightmove listing api - Memoizing query - Writing to sqlite database with sqlalchemy - Poetry dependencies
This commit is contained in:
commit
4ee7ae16c4
12 changed files with 3236 additions and 0 deletions
11
rightmove_parser.py
Normal file
11
rightmove_parser.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
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']
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue