1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "search_term": "Atlanta",
10 "sale_types": [
11 "bank-owned",
12 "foreclosures",
13 "private-seller",
14 ],
15 "prop_types": [
16 "single-family",
17 "multi-family",
18 "condos-townhouses",
19 "land",
20 ],
21 "buying_types": [
22 "online",
23 "in_person",
24 "remote_bid",
25 "offer",
26 ],
27}
28
29
30run = client.actor("parseforge/auction-com-property-scraper").call(run_input=run_input)
31
32
33print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
34for item in client.dataset(run["defaultDatasetId"]).iterate_items():
35 print(item)
36
37