1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "resumeText": """John Doe
10Software Developer
11Email: john@example.com | Phone: 555-0123
12
13PROFESSIONAL SUMMARY
14Motivated software developer with 3 years of experience in web development. Proficient in JavaScript, React, and Node.js.
15
16EXPERIENCE
17Junior Software Developer
18Tech Solutions Inc. | 2021 - Present
19- Developed responsive web applications using React and Redux
20- Implemented RESTful APIs with Node.js and Express
21- Participated in code reviews and Agile sprints
22
23EDUCATION
24Bachelor of Science in Computer Science
25State University | 2020
26
27SKILLS
28Languages: JavaScript, HTML, CSS, Python
29Frameworks: React, Node.js, Express
30Tools: Git, VS Code
31Databases: MongoDB, MySQL""",
32 "targetRole": "Senior Full Stack Engineer",
33 "targetCompany": "",
34 "experienceLevel": "mid",
35 "additionalContext": "",
36}
37
38
39run = client.actor("unique_penguin/ai-resume-gap-analyzer").call(run_input=run_input)
40
41
42print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
43for item in client.dataset(run["defaultDatasetId"]).iterate_items():
44 print(item)
45
46