1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "edges": [{
9 "deployer": "ExampleDeployer",
10 "funder": "ExampleFunder",
11 "mint": "ExampleMint",
12 "outcome": "unknown",
13 "funder_is_cex": False,
14 }] }
15
16
17run = client.actor("ultrathink-labs/deployer-reputation-heuristic").call(run_input=run_input)
18
19
20print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
21for item in client.dataset(run.default_dataset_id).iterate_items():
22 print(item)
23
24