1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrl": "https://www.landwatch.com/texas-land-for-sale/price-under-6000",
10 "maxItems": 50,
11 "fetchSellerAgentDetails": False,
12 "proxy": { "useApifyProxy": True },
13}
14
15
16run = client.actor("parsebird/landwatch-scraper").call(run_input=run_input)
17
18
19print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
20for item in client.dataset(run.default_dataset_id).iterate_items():
21 print(item)
22
23