1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "resumes": [{ "text": """JANE MARTINEZ
9San Francisco, CA | jane.martinez@example.com | (415) 555-0198 | linkedin.com/in/janemartinez
10
11Senior Backend Engineer
12
13SUMMARY
14Backend engineer with 8 years building high-throughput payment and data platforms. Comfortable owning services end to end.
15
16SKILLS
17Go, Python, PostgreSQL, Kafka, AWS, Kubernetes, gRPC, Terraform
18
19EXPERIENCE
20Staff Engineer, Ramp (Jan 2021 - Present)
21Led the ledger service handling 4M transactions per day. Cut p99 latency by 40 percent. Mentored 5 engineers.
22
23Senior Software Engineer, Stripe (Jun 2017 - Dec 2020)
24Built fraud scoring pipelines in Go and Kafka. Owned the disputes API.
25
26EDUCATION
27B.S. Computer Science, University of California Berkeley, 2015
28
29LINKS
30https://github.com/janemartinez""" }] }
31
32
33run = client.actor("scrapers_lat/resume-parser-tool").call(run_input=run_input)
34
35
36print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
37for item in client.dataset(run["defaultDatasetId"]).iterate_items():
38 print(item)
39
40