1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "startUrls": [{ "url": "https://example.com/" }],
10 "instructions": "Extract the page title and its main descriptive sentence.",
11 "jsonSchema": {
12 "type": "object",
13 "properties": {
14 "title": { "type": "string" },
15 "description": { "type": "string" },
16 },
17 "required": [
18 "title",
19 "description",
20 ],
21 "additionalProperties": False,
22 },
23}
24
25
26run = client.actor("resultquarry/page-quarry").call(run_input=run_input)
27
28
29print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
30for item in client.dataset(run.default_dataset_id).iterate_items():
31 print(item)
32
33