1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "proxyConfiguration": { "useApifyProxy": True },
10 "imap": {
11 "user": "",
12 "password": "",
13 "host": "imap.gmail.com",
14 "port": 993,
15 "tls": True,
16 "mailbox": "INBOX",
17 },
18}
19
20# Run the Actor and wait for it to finish
21run = client.actor("big-brain.io/linkedin-session-cookies").call(run_input=run_input)
22
23# Fetch and print Actor results from the run's dataset (if there are any)
24print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
25for item in client.dataset(run["defaultDatasetId"]).iterate_items():
26 print(item)
27
28# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start