List skills from CV / Resume / Job posting

This task list skills from a CV.

Input

This task list skills from a CV.

[1.0.0]:
First version
VersionAI ModelCreatedLink
1.0.006.06.2023

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • cv (Cv): The cv that should be scanned for skills.
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/u-ba835df8268fc301-list-skills-from-cv--resume/1.0.0?cv=Mark%20Mustermann%20Address%3A%20Brunnenmarkt%20999%2C%20Vienna%20Tel%3A%20ds324234234%20Email%3A%20sdadsdfsf%40hotmail.co.uk%20DoB%3A%2011%20February%201985%20Nationality%3A%20Austrian%20Gender%3A%20Male%20Marital%20status%3A%20Single%20%20Excellent%20knowledge%20of%20a%20variety%20of%20programming%20languages%20including%20Java%2C%20Python%2C%20C%2C%20JavaScript%2C%20PHP%20and%20SQL.%20Strong%20troubleshooting%20skills%20with%20software%2C%20hardware%20%26%20network%20products%20Expert%20in%20networking%20fault%20diagnostics%20and%20troubleshooting%2C%20Cisco%20routers%2C%20Cisco%20switches%2C%20routeing%20and%20switching%20configuration%20and%20technologies
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('u-ba835df8268fc301-list-skills-from-cv--resume','1.0.0', {'cv': 'Mark Mustermann Address: Brunnenmarkt 999, Vienna Tel: ds324234234 Email: sdadsdfsf@hotmail.co.uk DoB: 11 February 1985 Nationality: Austrian Gender: Male Marital status: Single Excellent knowledge of a variety of programming languages including Java, Python, C, JavaScript, PHP and SQL. Strong troubleshooting skills with software, hardware & network products Expert in networking fault diagnostics and troubleshooting, Cisco routers, Cisco switches, routeing and switching configuration and technologies'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('u-ba835df8268fc301-list-skills-from-cv--resume','1.0.0', cv='Mark Mustermann Address: Brunnenmarkt 999, Vienna Tel: ds324234234 Email: sdadsdfsf@hotmail.co.uk DoB: 11 February 1985 Nationality: Austrian Gender: Male Marital status: Single Excellent knowledge of a variety of programming languages including Java, Python, C, JavaScript, PHP and SQL. Strong troubleshooting skills with software, hardware & network products Expert in networking fault diagnostics and troubleshooting, Cisco routers, Cisco switches, routeing and switching configuration and technologies')