1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = {
9 "resumeCore": [
10 "React",
11 "JavaScript",
12 "TypeScript",
13 "HTML",
14 "CSS",
15 ],
16 "resumeSecondary": [
17 "Redux",
18 "Node.js",
19 "Express",
20 "MongoDB",
21 "REST",
22 "Git",
23 "Tailwind",
24 "MERN",
25 ],
26 "resumeBonus": [
27 "Next.js",
28 "Jest",
29 "Vite",
30 "Figma",
31 "Agile",
32 ],
33 "allowedRegions": [],
34 "excludeTitleKeywords": [
35 "React Native",
36 "QA",
37 "Android",
38 "iOS",
39 "DevOps",
40 "Java",
41 "Angular",
42 ],
43 "seniorTitleWords": [
44 "senior",
45 "sr",
46 "lead",
47 "principal",
48 "staff",
49 "architect",
50 "director",
51 "manager",
52 "vp",
53 "head of",
54 ],
55 "jdStackRejects": [
56 "php",
57 "angular",
58 "angularjs",
59 "java",
60 "c#",
61 "c++",
62 ".net",
63 "dotnet",
64 "asp.net",
65 "python",
66 ],
67 "wrongStack": [
68 "java",
69 "angular",
70 "vue",
71 ".net",
72 "c#",
73 "django",
74 "golang",
75 ],
76}
77
78
79run = client.actor("congruent_import/resume-job-matcher").call(run_input=run_input)
80
81
82print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
83for item in client.dataset(run.default_dataset_id).iterate_items():
84 print(item)
85
86