1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "operation": "search",
10 "locations": [],
11 "searchUrls": [],
12 "maxResults": 100,
13 "minPrice": 0,
14 "maxPrice": 0,
15 "minRooms": 0,
16 "maxRooms": 0,
17 "minLivingArea": 0,
18 "maxLivingArea": 0,
19 "onlyNewConstruction": False,
20 "onlyUpcomingSale": False,
21}
22
23
24run = client.actor("sian.agency/booli-property-scraper").call(run_input=run_input)
25
26
27print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
28for item in client.dataset(run.default_dataset_id).iterate_items():
29 print(item)
30
31