EasyHireApp - Candidate Score
Pricing
from $200.00 / 1,000 results
Pricing
from $200.00 / 1,000 results
Rating
0.0
(0)
Developer

Alejandro Paris
Actor stats
0
Bookmarked
3
Total users
3
Monthly active users
a month ago
Last modified
Categories
Share
Pricing
from $200.00 / 1,000 results
Pricing
from $200.00 / 1,000 results
Rating
0.0
(0)
Developer

Alejandro Paris
Actor stats
0
Bookmarked
3
Total users
3
Monthly active users
a month ago
Last modified
Categories
Share
You can access the EasyHireApp - Candidate Score programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "inputType": "text",10 "cvsBatch": """John Smith11Email: john@example.com12Senior Software Engineer135 years experience14Skills: Python, JavaScript, SQL15
16===17
18Sarah Johnson19Email: sarah@example.com20Junior Developer212 years experience22Skills: HTML, CSS, React""",23 "pdfUrls": [],24 "jobTitle": "Software Engineer",25 "jobDescription": "Looking for a Software Engineer with 3+ years of experience in Python and JavaScript. Must have strong problem-solving skills.",26 "requiredSkills": [27 "Python",28 "JavaScript",29 ],30 "experienceYears": 3,31}32
33# Run the Actor and wait for it to finish34run = client.actor("peghin/easyhireapp---candidate-score").call(run_input=run_input)35
36# Fetch and print Actor results from the run's dataset (if there are any)37print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])38for item in client.dataset(run["defaultDatasetId"]).iterate_items():39 print(item)40
41# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use EasyHireApp - Candidate Score API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: