we have started using www.recrew.ai - and are pretty happy with the accuracy and ease with which we were able to integrate it.
import http.client
conn = http.client.HTTPSConnection("backend.app.recrew.ai")
payload = "{\n "resume_base64": "File"\n}"
headers = { 'Content-Type': "application/json", 'X-Api-Key': "YOUR_TOKEN" }
conn.request("POST", "/api/cv-parser/v1", payload, headers)
res = conn.getresponse() data = res.read()
print(data.decode("utf-8"))