1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "extractionMode": "auto",
10 "inputType": "raw_text",
11 "rawInput": """John Doe
12johndoe@email.com | (555) 123-4567
13linkedin.com/in/johndoe | github.com/johndoe
14New York, NY
15
16Summary
17Full-stack developer with 5+ years of experience in building web applications using Python, JavaScript, and cloud technologies.
18
19Experience
20
21Senior Developer at Acme Corp
22New York, NY — March 2021 – Present
23• Architected microservices platform handling 2M+ daily requests
24• Led team of 4 engineers on payment integration project
25• Reduced API latency by 40% through caching strategy
26
27Software Developer at StartupIO
28Boston, MA — June 2018 – February 2021
29• Built React dashboard used by 500+ enterprise clients
30• Implemented CI/CD pipelines with GitHub Actions and Docker
31• Designed PostgreSQL schema supporting multi-tenant SaaS
32
33Education
34
35MIT
36Bachelor of Science in Computer Science
37September 2014 – June 2018
38GPA: 3.75/4.0
39
40Skills
41Languages: Python, JavaScript, TypeScript, SQL, Go
42Frameworks: React, Django, FastAPI, Express.js
43Cloud: AWS (EC2, Lambda, S3, RDS), Docker, Kubernetes
44Databases: PostgreSQL, MongoDB, Redis
45
46Certifications
47- AWS Solutions Architect Associate
48- Certified Kubernetes Administrator
49
50Languages
51- English (Native)
52- French (Conversational)""",
53 "urls": [],
54 "kvStoreKeys": [],
55 "chatLogFormat": "auto",
56 "outputFormat": "full",
57 "includeSourceText": False,
58 "maxConcurrency": 5,
59 "proxyConfiguration": { "useApifyProxy": True },
60 "requestTimeoutSecs": 30,
61}
62
63
64run = client.actor("moving_beacon-owner1/my-actor-68").call(run_input=run_input)
65
66
67print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
68for item in client.dataset(run["defaultDatasetId"]).iterate_items():
69 print(item)
70
71