1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "resumeUrl": "https://writing.colostate.edu/guides/documents/resume/functionalSample.pdf",
10 "resumeText": """John Smith
11john.smith@email.com | linkedin.com/in/johnsmith | (555) 123-4567
12
13SUMMARY
14Software Engineer with 5+ years of experience building scalable web applications using Python, React, and AWS. Passionate about clean code, system design, and mentoring junior developers.
15
16EXPERIENCE
17Senior Software Engineer | TechCorp Inc. | 2021 – Present
18• Architected microservices platform serving 2M+ daily requests, reducing latency by 40%
19• Led migration from monolith to Docker/Kubernetes, improving deployment frequency by 300%
20• Mentored team of 4 junior engineers through code reviews and pair programming
21
22Software Engineer | StartupXYZ | 2019 – 2021
23• Built REST APIs using Python/Django handling 500K requests/day
24• Implemented CI/CD pipeline with Jenkins reducing release cycles from 2 weeks to 2 days
25• Developed React dashboard for real-time analytics used by 50+ enterprise clients
26
27EDUCATION
28B.S. Computer Science | State University | 2019
29
30SKILLS
31Python, JavaScript, TypeScript, React, Django, Node.js, PostgreSQL, MongoDB, Docker, Kubernetes, AWS, Git, CI/CD, REST API, GraphQL, Agile/Scrum
32
33PROJECTS
34• Open-source CLI tool for API testing (500+ GitHub stars)
35• Real-time chat application using WebSockets and Redis
36
37CERTIFICATIONS
38• AWS Solutions Architect Associate
39• Certified Kubernetes Administrator (CKA)""",
40 "targetRole": "Software Engineer",
41 "customKeywords": "fastapi, redis, celery, websockets, postgresql, terraform, github actions, system design, distributed systems",
42}
43
44
45run = client.actor("moving_beacon-owner1/my-actor-61").call(run_input=run_input)
46
47
48print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
49for item in client.dataset(run["defaultDatasetId"]).iterate_items():
50 print(item)
51
52