1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "resumeText": """EDUCATION
10Master of Science in Computer Science
11Stanford University | 2018-2020 | GPA: 3.8/4.0
12
13Bachelor of Technology in Computer Science
14IIT Delhi | 2014-2018 | GPA: 3.9/4.0
15
16WORK EXPERIENCE
17Senior Software Engineer | Google Inc. | June 2020 - Present (5 years)
18โข Led microservices migration for payment systems
19โข Reduced API latency by 40% through optimization
20โข Mentored team of 5 junior engineers
21
22Software Engineer Intern | Microsoft | Summer 2019
23โข Built data analytics dashboard using React and Python
24
25SKILLS
26Technical: Python, Java, JavaScript, React, Node.js, AWS, Docker, Kubernetes, PostgreSQL
27Soft Skills: Team Leadership, Agile/Scrum, Technical Documentation""",
28 "jobTitle": "Software Engineer",
29 "jobDescription": "",
30 "location": "San Francisco, CA",
31 "attorneyBranding": "",
32}
33
34
35run = client.actor("humorous_eccentric/h1b-eligibility-checker").call(run_input=run_input)
36
37
38print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
39for item in client.dataset(run["defaultDatasetId"]).iterate_items():
40 print(item)
41
42